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

untemplate.exception.scala Maven / Gradle / Ivy

The newest version!
package untemplate

class UntemplateException(msg : String, cause : Throwable = null) extends Exception(msg, cause)
class NonuniqueIdentifier(msg : String, cause : Throwable = null) extends UntemplateException(msg, cause)
class BadIdentifier(msg : String, cause : Throwable = null) extends UntemplateException(msg, cause)
class ParseException(msg : String, cause : Throwable = null) extends UntemplateException(msg, cause)





© 2015 - 2024 Weber Informatics LLC | Privacy Policy