org.ccsds.moims.mo.mal.TooManyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-area001-v003-mal Show documentation
Show all versions of api-area001-v003-mal Show documentation
An implementation of the Java API for the CCSDS MAL
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);
}
}