1/* GENERATED SOURCE. DO NOT MODIFY. */
2/*
3 *******************************************************************************
4 * Copyright (C) 2014-2015, International Business Machines Corporation and
5 * others. All Rights Reserved.
6 *******************************************************************************
7 */
8package android.icu.util;
9
10/**
11 * Unchecked version of {@link CloneNotSupportedException}.
12 * Some ICU APIs do not throw the standard exception but instead wrap it
13 * into this unchecked version.
14 *
15 * @hide Only a subset of ICU is exposed in Android
16 */
17public class ICUCloneNotSupportedException extends ICUException {
18    private static final long serialVersionUID = -4824446458488194964L;
19
20    /**
21     * Default constructor.
22     */
23    public ICUCloneNotSupportedException() {
24    }
25
26    /**
27     * Constructor.
28     *
29     * @param message exception message string
30     */
31    public ICUCloneNotSupportedException(String message) {
32        super(message);
33    }
34
35    /**
36     * Constructor.
37     *
38     * @param cause original exception (normally a {@link CloneNotSupportedException})
39     */
40    public ICUCloneNotSupportedException(Throwable cause) {
41        super(cause);
42    }
43
44    /**
45     * Constructor.
46     *
47     * @param message exception message string
48     * @param cause original exception (normally a {@link CloneNotSupportedException})
49     */
50    public ICUCloneNotSupportedException(String message, Throwable cause) {
51        super(message, cause);
52    }
53}
54