blob: f6892196969683b2a5a287b0e94ea52ce78cacdc [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 2001-2007, 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 message the error message for this exception
* @draft ICU 3.8
* @provisional This API might change or be removed in a future release.
*/
public ArabicShapingException(String message) {
super(message);
}
}