mirror of
https://github.com/corda/corda.git
synced 2025-01-04 04:04:27 +00:00
8 lines
124 B
Java
8 lines
124 B
Java
package java.lang;
|
|
|
|
public class Throwable {
|
|
private String message;
|
|
private Object trace;
|
|
private Throwable cause;
|
|
}
|