Minor, add constructors with messages and causes to KotlinReflectionNotSupportedError

This commit is contained in:
Alexander Udalov
2015-10-26 17:41:22 +03:00
parent 09f0b3fe87
commit d021821db5
@@ -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);
}
}