javax.slee.InvalidArgumentException Maven / Gradle / Ivy
package javax.slee;
/**
* This exception class is thrown by management operations when given an illegal
* argument such as a zero-length string or invalid numerical value.
*/
public class InvalidArgumentException extends Exception {
/**
* Create an InvalidArgumentException
with no detail message.
*/
public InvalidArgumentException() {}
/**
* Create an InvalidArgumentException
with a detail message.
* @param message the detail message.
*/
public InvalidArgumentException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy