com.github.dmgcodevil.jmspy.agent.AgentConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmspy-agent Show documentation
Show all versions of jmspy-agent Show documentation
Library to record method invocations
The newest version!
package com.github.dmgcodevil.jmspy.agent;
/**
* Exception indicates that any errors occurred during building {@link com.github.dmgcodevil.jmspy.agent.JmspyAgentConfig}.
*
* @author dmgcodevil
*/
public class AgentConfigurationException extends RuntimeException {
public AgentConfigurationException() {
}
public AgentConfigurationException(String message) {
super(message);
}
public AgentConfigurationException(String message, Throwable cause) {
super(message, cause);
}
public AgentConfigurationException(Throwable cause) {
super(cause);
}
}