Minor, add constructors with messages and causes to KotlinReflectionNotSupportedError
This commit is contained in:
@@ -20,4 +20,16 @@ public class KotlinReflectionNotSupportedError extends Error {
|
||||
public KotlinReflectionNotSupportedError() {
|
||||
super("Kotlin reflection implementation is not found at runtime. Make sure you have kotlin-reflect.jar in the classpath");
|
||||
}
|
||||
|
||||
public KotlinReflectionNotSupportedError(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public KotlinReflectionNotSupportedError(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public KotlinReflectionNotSupportedError(Throwable cause) {
|
||||
super(cause);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user