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 */ 12 package ohos.global.icu.impl; 13 14 /** 15 * @hide exposed on OHOS 16 */ 17 public class InvalidFormatException extends Exception { 18 19 // Generated by serialver from JDK 1.4.1_01 20 static final long serialVersionUID = 8883328905089345791L; 21 InvalidFormatException()22 public InvalidFormatException(){} 23 InvalidFormatException(Throwable cause)24 public InvalidFormatException(Throwable cause) { 25 super(cause); 26 } 27 InvalidFormatException(String message)28 public InvalidFormatException(String message) { 29 super(message); 30 } 31 } 32