Home | History | Annotate | Download | only in text
      1 /*
      2  *******************************************************************************
      3  *   Copyright (C) 2001-2008, 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      * Construct the exception with the given message
     20      * @param message the error message for this exception
     21      * @stable ICU 3.8
     22      */
     23     public ArabicShapingException(String message) {
     24         super(message);
     25     }
     26 }
     27