Home | History | Annotate | Download | only in text
      1 /* GENERATED SOURCE. DO NOT MODIFY. */
      2 //  2016 and later: Unicode, Inc. and others.
      3 // License & terms of use: http://www.unicode.org/copyright.html#License
      4 /*
      5  *******************************************************************************
      6  *   Copyright (C) 2001-2008, International Business Machines
      7  *   Corporation and others.  All Rights Reserved.
      8  *******************************************************************************
      9  */
     10 
     11 package android.icu.text;
     12 
     13 /**
     14  * Thrown by ArabicShaping when there is a shaping error.
     15  * @hide Only a subset of ICU is exposed in Android
     16  */
     17 public final class ArabicShapingException extends Exception {
     18     // generated by serialver from JDK 1.4.1_01
     19     static final long serialVersionUID = 5261531805497260490L;
     20 
     21     /**
     22      * Construct the exception with the given message
     23      * @param message the error message for this exception
     24      */
     25     public ArabicShapingException(String message) {
     26         super(message);
     27     }
     28 }
     29