com.addc.commons.slp.SLPRegistrarException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of addc-slp Show documentation
Show all versions of addc-slp Show documentation
The addc-slp library supplies client classes for registering objects with a Service Location Protocol Daemon and
for looking theses objects up later.
package com.addc.commons.slp;
/**
* The SLPRegistrarException is thrown by the {@link SLPRegistrarThread} if there is a failure.
*/
public class SLPRegistrarException extends Exception {
private static final long serialVersionUID= 2591731117513546316L;
/**
* Create a new SLPRegistrarException
*/
public SLPRegistrarException() {
}
/**
* Create a new SLPRegistrarException
* @param message the message
*/
public SLPRegistrarException(String message) {
super(message);
}
/**
* Create a new SLPRegistrarException
* @param cause The cause
*/
public SLPRegistrarException(Throwable cause) {
super(cause);
}
/**
* Create a new SLPRegistrarException
* @param message The message
* @param cause The cause
*/
public SLPRegistrarException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy