All Downloads are FREE. Search and download functionalities are using the official Maven repository.

goja.core.exceptions.ReflectException Maven / Gradle / Ivy

The newest version!
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2013-2014 sagyf Yang. The Four Group.
 */
package goja.core.exceptions;

/**
 * A unchecked wrapper for any of Java's checked reflection exceptions: 

These exceptions are *

  • {@link ClassNotFoundException}
  • {@link IllegalAccessException}
  • * {@link IllegalArgumentException}
  • {@link InstantiationException}
  • {@link * java.lang.reflect.InvocationTargetException}
  • {@link NoSuchMethodException}
  • * {@link NoSuchFieldException}
  • {@link SecurityException}
* * @author Lukas Eder */ public class ReflectException extends RuntimeException { /** * Generated UID */ private static final long serialVersionUID = -6213149635297151442L; public ReflectException(String message) { super(message); } public ReflectException(String message, Throwable cause) { super(message, cause); } public ReflectException() { super(); } public ReflectException(Throwable cause) { super(cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy