ICU-5370 Add serialization tests for InvalidFormatException and NumberFormat.Field

X-SVN-Rev: 20278
This commit is contained in:
Eric Mader 2006-09-08 19:01:14 +00:00
parent 8cb0256a8d
commit 0151794e24

View File

@ -1,6 +1,6 @@
/**
*******************************************************************************
* Copyright (C) 2006, International Business Machines Corporation and *
* Copyright (C) 2006, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
@ -9,7 +9,12 @@
package com.ibm.icu.impl;
public class InvalidFormatException extends Exception {
// Generated by serialver from JDK 1.4.1_01
static final long serialVersionUID = 8883328905089345791L;
public InvalidFormatException(){}
public InvalidFormatException(String message){
super(message);
}