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

com.addc.commons.slp.SLPRegistrarException Maven / Gradle / Ivy

Go to download

The addc-slp library supplies client classes for registering objects with a Service Location Protocol Daemon and for looking theses objects up later.

There is a newer version: 2.6
Show newest version
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