package throwable;

public class CustomThrowable extends Throwable {

	public CustomThrowable(String string) {
		super(string);
	}

	// This is serializable, hence this instance variable
	private static final long serialVersionUID = 1L;
	
	protected String comment =
			"\tYou could throw a more general Throwable instead of a more informative Exception,\n\tbut why would you want to?";

}
