mirror of
https://github.com/corda/corda.git
synced 2025-01-09 22:42:40 +00:00
10 lines
540 B
Java
10 lines
540 B
Java
|
package java.lang.invoke;
|
||
|
|
||
|
public class LambdaConversionException extends java.lang.Exception {
|
||
|
public LambdaConversionException() { throw new RuntimeException(); }
|
||
|
public LambdaConversionException(String s) { throw new RuntimeException(); }
|
||
|
public LambdaConversionException(String s, Throwable th) { throw new RuntimeException(); }
|
||
|
public LambdaConversionException(Throwable th) { throw new RuntimeException(); }
|
||
|
public LambdaConversionException(String s, Throwable th, boolean b, boolean b2) { throw new RuntimeException(); }
|
||
|
}
|