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

com.cybermkd.plugin.kit.ReflectException Maven / Gradle / Ivy

The newest version!
package com.cybermkd.plugin.kit;

import java.lang.reflect.InvocationTargetException;

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

* These exceptions are *

    *
  • {@link ClassNotFoundException}
  • *
  • {@link IllegalAccessException}
  • *
  • {@link IllegalArgumentException}
  • *
  • {@link InstantiationException}
  • *
  • {@link 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 - 2024 Weber Informatics LLC | Privacy Policy