/* PathException.java: An exception to be thrown on misformed paths * * Copyright (c) 1998 The Regents of the University of California. * All Rights Reserved. See the COPYRIGHT file for details. */ package tutorial.tcltk98; public class PathException extends Exception { public PathException () { super(); } public PathException (String detail) { super(detail); } }