From 0151794e2436514807fe4f962cede7ed1f15a79d Mon Sep 17 00:00:00 2001 From: Eric Mader Date: Fri, 8 Sep 2006 19:01:14 +0000 Subject: [PATCH] ICU-5370 Add serialization tests for InvalidFormatException and NumberFormat.Field X-SVN-Rev: 20278 --- icu4j/src/com/ibm/icu/impl/InvalidFormatException.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/icu4j/src/com/ibm/icu/impl/InvalidFormatException.java b/icu4j/src/com/ibm/icu/impl/InvalidFormatException.java index c827977081..6f7c2a93c9 100644 --- a/icu4j/src/com/ibm/icu/impl/InvalidFormatException.java +++ b/icu4j/src/com/ibm/icu/impl/InvalidFormatException.java @@ -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); }