blob: df909da4806844470f7d64f0936abf9d69ee1f0d [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 2001-2006, International Business Machines
* Corporation and others. All Rights Reserved.
*******************************************************************************
*/
package com.ibm.icu.text;
/**
* Thrown by ArabicShaping when there is a shaping error.
* @stable ICU 2.0
*/
public final class ArabicShapingException extends Exception {
// generated by serialver from JDK 1.4.1_01
static final long serialVersionUID = 5261531805497260490L;
/**
* Constuct the exception with the given message
* @param msg the error message for this exception
*
* @internal revisit for ICU 3.6
* @deprecated This is a draft API and might change in a future release of ICU.
*/
public ArabicShapingException(String message) {
super(message);
}
}