1/* GENERATED SOURCE. DO NOT MODIFY. */
2// © 2016 and later: Unicode, Inc. and others.
3// License & terms of use: http://www.unicode.org/copyright.html#License
4/**
5*******************************************************************************
6* Copyright (C) 2006-2015, International Business Machines Corporation and
7* others. All Rights Reserved.
8*******************************************************************************
9*
10*******************************************************************************
11*/
12package android.icu.impl;
13
14/**
15 * @hide Only a subset of ICU is exposed in Android
16 */
17public class InvalidFormatException extends Exception {
18
19    // Generated by serialver from JDK 1.4.1_01
20    static final long serialVersionUID = 8883328905089345791L;
21
22    public InvalidFormatException(){}
23
24    public InvalidFormatException(Throwable cause) {
25        super(cause);
26    }
27
28    public InvalidFormatException(String message) {
29        super(message);
30    }
31}
32