home *** CD-ROM | disk | FTP | other *** search
/ Late Night VRML 2.0 with Java CD-ROM / code.zip / Ch13 / nff / NffSyntaxException.java < prev    next >
Text File  |  1996-11-27  |  175b  |  8 lines

  1. package nff;
  2.  
  3. public class NffSyntaxException extends Exception {
  4.     public NffSyntaxException() { super(); }
  5.     public NffSyntaxException(String s) { super(s); }
  6. }
  7.  
  8.