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

org.ccsds.moims.mo.mal.TooManyException Maven / Gradle / Ivy

The newest version!
package org.ccsds.moims.mo.mal;

/**
 * The TooManyException exception. Maximum number of subscriptions or providers 
 * of a broker has been exceeded. 
 */
public final class TooManyException extends org.ccsds.moims.mo.mal.MOErrorException {

    /**
     * Constructs a new TooManyException exception.
     * 
     */
    public TooManyException() {
        super(MALHelper.TOO_MANY_ERROR_NUMBER, "");
    }

    /**
     * Constructs a new TooManyException exception.
     * 
     * @param extraInformation The extraInformation of the exception.
     */
    public TooManyException(Object extraInformation) {
        super(MALHelper.TOO_MANY_ERROR_NUMBER, extraInformation);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy