home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / ed8n1t2i / fileformatexception.java < prev    next >
Encoding:
Java Source  |  1996-08-14  |  1.5 KB  |  46 lines

  1. //****************************************************************************
  2. // ---- version information ----
  3. //
  4. // FileFormatException.java  v 1.00 b1
  5. // Written by:               I. van Rienen / E-mail ivr@bart.nl
  6. // URL:                      http://www/bart.nl/~ivr
  7. // Initial release:
  8. // Released in public domain:
  9. //
  10. // ---- Description ----
  11. // Java class handling File Format Exceptions
  12. //
  13. // This program and the Java source is in the public domain.
  14. // Permission to use, copy, modify, and distribute this software
  15. // and its documentation for NON-COMMERCIAL purposes and
  16. // without fee is hereby granted.
  17. //
  18. //    Copyright 1996
  19. //
  20. //    Iwan van Rienen
  21. //    Joan Maetsuyckerstr. 145
  22. //    2593 ZG  The Hague
  23. //    The Netherlands
  24. //
  25. // I am not responsible for any bugs in this program and
  26. // possible damage to hard- or software when using this program.
  27. //****************************************************************************
  28. import java.applet.Applet;
  29. import java.awt.*;
  30. import java.lang.InterruptedException;
  31. import java.lang.Integer;
  32. import java.lang.Math;
  33. import java.util.Vector;
  34. import java.io.StreamTokenizer;
  35. import java.io.InputStream;
  36. import java.io.IOException;
  37. import java.net.URL;
  38.  
  39. // ---------------------------------------------------------------------------
  40. // class FileFormatException
  41. // ---------------------------------------------------------------------------
  42. class FileFormatException extends Exception {
  43.     public FileFormatException(String s) {
  44.         super(s);
  45.     }
  46. }