/** * <tt>VektorException</tt> is the superclass for all exceptions used * by Value, Scanner and Parser * @see Value * @see Scanner * @see Parser */ public class VektorException extends Exception { public VektorException(String s) { super(s); } }