KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ibm > icu > impl > InvalidFormatException


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 JavaDoc {
12     
13     // Generated by serialver from JDK 1.4.1_01
14
static final long serialVersionUID = 8883328905089345791L;
15     
16     public InvalidFormatException(){}
17     
18     public InvalidFormatException(String JavaDoc message){
19         super(message);
20     }
21 }
22
Popular Tags