1 2 3 4 5
package ch.bfh.exceptions; public class ParserException extends RuntimeException { public ParserException(String s) { super(s); } }