package org.scribble.cli; public class CommandLineException extends Exception { private static final long serialVersionUID = 1L; public CommandLineException() { // TODO Auto-generated constructor stub } public CommandLineException(String arg0) { super(arg0); // TODO Auto-generated constructor stub } public CommandLineException(Throwable arg0) { super(arg0); // TODO Auto-generated constructor stub } public CommandLineException(String arg0, Throwable arg1) { super(arg0, arg1); // TODO Auto-generated constructor stub } public CommandLineException(String arg0, Throwable arg1, boolean arg2, boolean arg3) { super(arg0, arg1, arg2, arg3); // TODO Auto-generated constructor stub } }