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

io.github.bloepiloepi.spear.exceptions.InvalidCharacterException Maven / Gradle / Ivy

The newest version!
package io.github.bloepiloepi.spear.exceptions;

/**
 * Thrown when the lexer cannot understand a character
 */
public class InvalidCharacterException extends RuntimeException {
	
	public InvalidCharacterException(Character character) {
		super("Invalid Character: " + character + "! Is the file manually edited?");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy