29 lines
971 B
Java
29 lines
971 B
Java
![]() |
/* GENERATED SOURCE. DO NOT MODIFY. */
|
||
|
// © 2016 and later: Unicode, Inc. and others.
|
||
|
// License & terms of use: http://www.unicode.org/copyright.html
|
||
|
/*
|
||
|
*******************************************************************************
|
||
|
* Copyright (C) 2001-2008, International Business Machines
|
||
|
* Corporation and others. All Rights Reserved.
|
||
|
*******************************************************************************
|
||
|
*/
|
||
|
|
||
|
package android.icu.text;
|
||
|
|
||
|
/**
|
||
|
* Thrown by ArabicShaping when there is a shaping error.
|
||
|
* @hide Only a subset of ICU is exposed in Android
|
||
|
*/
|
||
|
public final class ArabicShapingException extends Exception {
|
||
|
// generated by serialver from JDK 1.4.1_01
|
||
|
static final long serialVersionUID = 5261531805497260490L;
|
||
|
|
||
|
/**
|
||
|
* Construct the exception with the given message
|
||
|
* @param message the error message for this exception
|
||
|
*/
|
||
|
public ArabicShapingException(String message) {
|
||
|
super(message);
|
||
|
}
|
||
|
}
|