1 /**2 *******************************************************************************3 * Copyright (C) 2006, International Business Machines Corporation and *4 * others. All Rights Reserved. *5 *******************************************************************************6 *7 *******************************************************************************8 */ 9 package com.ibm.icu.impl;10 11 public class InvalidFormatException extends Exception {12 13 // Generated by serialver from JDK 1.4.1_0114 static final long serialVersionUID = 8883328905089345791L;15 16 public InvalidFormatException(){}17 18 public InvalidFormatException(String message){19 super(message);20 }21 }22