Annotation of java/classes/org/w3c/util/UnixException.java, revision 1.1
1.1 ! abaird 1: // UnixException.java
! 2: // $Id$
! 3: // (c) COPYRIGHT MIT and INRIA, 1996.
! 4: // Please first read the full copyright statement in file COPYRIGHT.html
! 5:
! 6: package w3c.util;
! 7:
! 8: /**
! 9: * Exception used to notify of any UNIX calls failure.
! 10: * @see Unix
! 11: */
! 12:
! 13: public class UnixException extends Exception {
! 14:
! 15: UnixException(String msg) {
! 16: super(msg);
! 17: }
! 18:
! 19: }
Webmaster