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