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

net.smartcosmos.exceptions.SmartCosmosException Maven / Gradle / Ivy

Go to download

Provides Spring Configuration and Annotations making it easier to develop SMART COSMOS Extensions

The newest version!
package net.smartcosmos.exceptions;

/**
 * Generic base exception for the SMART COSMOS Objects platform.
 */
public class SmartCosmosException extends RuntimeException {

    private static final long serialVersionUID = 8059819376742981420L;

    /**
     * Default Exception constructor.
     *
     * @param message the message in the exception
     */
    public SmartCosmosException(String message) {

        super(message);
    }

    /**
     * Default Exception constructor.
     *
     * @param message the message in the exception
     * @param cause the wrapped, originating exception
     */
    public SmartCosmosException(String message, Throwable cause) {

        super(message, cause);
    }

    /**
     * Default Exception constructor.
     *
     * @param cause the wrapped, originating exception
     */
    public SmartCosmosException(Throwable cause) {

        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy