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

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