ICU-5390 exclude two DateModuleFormatError constructor which are not compatible with JDK1.3
X-SVN-Rev: 20343
This commit is contained in:
parent
39794098b3
commit
41b27222cd
@ -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
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user