com.github.dmgcodevil.jmspy.exception.ProxyCreationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmspy-core Show documentation
Show all versions of jmspy-core Show documentation
Library to record method invocations
package com.github.dmgcodevil.jmspy.exception;
/**
* // todo
*
* @author dmgcodevil
*/
public class ProxyCreationException extends RuntimeException {
public ProxyCreationException(String message) {
super(message);
}
public ProxyCreationException(Throwable cause) {
super(cause);
}
public ProxyCreationException(String message, Throwable cause) {
super(message, cause);
}
}