public class DooferUserException extends Exception { /** * build new exception for stupid user * @param n name of stupid user */ public DooferUserException(String n) { super(n + " ist total doof!"); } }