![JAR search and dependency download from the Maven repository](/logo.png)
org.jhotdraw8.icollection.exception.SizeLimitExceededException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jhotdraw8.icollection Show documentation
Show all versions of org.jhotdraw8.icollection Show documentation
JHotDraw8 Immutable Collections
The newest version!
package org.jhotdraw8.icollection.exception;
import java.io.Serial;
/**
* This exception is thrown when a method exceeds a size limit.
*/
public class SizeLimitExceededException extends RuntimeException {
@Serial
private static final long serialVersionUID = 0L;
/**
* Constructs an instance without a message.
*/
public SizeLimitExceededException() {
}
/**
* Constructs an instance with the specified error message.
*
* @param message the error message
*/
public SizeLimitExceededException(String message) {
super(message);
}
/**
* Constructs an instance with the specified error message
* and cause.
*
* @param message the error message
* @param cause the underlying cause
*/
public SizeLimitExceededException(String message, Throwable cause) {
super(message, cause);
}
/**
* Constructs an instance with the specified underlying cause.
*
* @param cause the underlying cause
*/
public SizeLimitExceededException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy