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

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

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

/**
 * Thrown when the path contains invalid characters
 */
public class InvalidPathException extends RuntimeException {
	
	public InvalidPathException(char wrongCharacter) {
		super("Spear identifiers can not contain the following character: " + wrongCharacter);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy