com.github.mathiewz.slick.util.OperationNotSupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of modernized-slick Show documentation
Show all versions of modernized-slick Show documentation
The main purpose of this libraryis to modernize and maintain the slick2D library.
The newest version!
package com.github.mathiewz.slick.util;
import com.github.mathiewz.slick.SlickException;
/**
* Thrown to indicate that a limited implementation of a class can not
* support the operation requested.
*
* @author kevin
*/
public class OperationNotSupportedException extends SlickException {
/**
* Create a new exception
*
* @param msg
* The message describing the limitation
*/
public OperationNotSupportedException(String msg) {
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy