ma.vi.base.io.NoMoreSpaceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.vikmad.base Show documentation
Show all versions of com.vikmad.base Show documentation
Base algos, data structures and utilities
The newest version!
/*
* Copyright (c) 2018 Vikash Madhow
*/
package ma.vi.base.io;
/**
* Thrown if there is no more space left in a data structure
* for executing some operation.
*
* @author [email protected]
*/
public class NoMoreSpaceException extends RuntimeException {
public NoMoreSpaceException() {
}
public NoMoreSpaceException(String message) {
super(message);
}
public NoMoreSpaceException(String message, Throwable cause) {
super(message, cause);
}
public NoMoreSpaceException(Throwable cause) {
super(cause);
}
public NoMoreSpaceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy