BinaryNotFoundException.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:0k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. package net.wastl.webmail.server;
  2. /**
  3.  * BinaryNotFoundException.java
  4.  *
  5.  *
  6.  * Created: Thu May  4 15:38:04 2000
  7.  *
  8.  * @author Sebastian Schaffert
  9.  * @version
  10.  */
  11. public class BinaryNotFoundException extends WebMailException {
  12.     
  13.     public BinaryNotFoundException() {
  14. super();
  15.     }
  16.     public BinaryNotFoundException(String s) {
  17. super(s);
  18.     }
  19.     
  20. } // BinaryNotFoundException