1 /* 2 ******************************************************************************* 3 * Copyright (C) 2001-2006, International Business Machines 4 * Corporation and others. All Rights Reserved. 5 ******************************************************************************* 6 */ 7 8 package com.ibm.icu.text; 9 10 /** 11 * Thrown by ArabicShaping when there is a shaping error. 12 * @stable ICU 2.0 13 */ 14 public final class ArabicShapingException extends Exception { 15 // generated by serialver from JDK 1.4.1_01 16 static final long serialVersionUID = 5261531805497260490L; 17 18 /** 19 * Constuct the exception with the given message 20 * @param message the error message for this exception 21 * 22 * @internal revisit for ICU 3.6 23 * @deprecated This API is ICU internal only. 24 */ 25 public ArabicShapingException(String message) { 26 super(message); 27 } 28 } 29