mirror of
https://github.com/corda/corda.git
synced 2025-06-13 12:48:18 +00:00
sketch out ResourceBundle
This commit is contained in:
@ -31,6 +31,14 @@ public class Throwable {
|
||||
return cause;
|
||||
}
|
||||
|
||||
public void initCause(Throwable e) {
|
||||
if (cause == null) {
|
||||
cause = e;
|
||||
} else {
|
||||
throw new IllegalStateException();
|
||||
}
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
Reference in New Issue
Block a user