mirror of
https://github.com/corda/corda.git
synced 2025-06-18 15:18:16 +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;
|
|
}
|