01: /**
02: *******************************************************************************
03: * Copyright (C) 2006, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: *
07: *******************************************************************************
08: */package com.ibm.icu.impl;
09:
10: public class InvalidFormatException extends Exception {
11:
12: // Generated by serialver from JDK 1.4.1_01
13: static final long serialVersionUID = 8883328905089345791L;
14:
15: public InvalidFormatException() {
16: }
17:
18: public InvalidFormatException(String message) {
19: super(message);
20: }
21: }
|