ICU-5390 exclude two DateModuleFormatError constructor which are not compatible with JDK1.3

X-SVN-Rev: 20343
This commit is contained in:
Yoshito Umaoka 2006-09-18 18:42:39 +00:00
parent 39794098b3
commit 41b27222cd

View File

@ -1,3 +1,4 @@
//##header
/**
*******************************************************************************
* Copyright (C) 2001-2006, International Business Machines Corporation and *
@ -47,12 +48,14 @@ public interface TestDataModule {
public DataModuleFormatError(String msg){
super(msg);
}
//#ifndef FOUNDATION
public DataModuleFormatError(String msg, Throwable cause){
super(msg, cause);
}
public DataModuleFormatError(Throwable cause) {
super(cause);
}
//#endif
}
/**