scheduledaoexception.java

来自「100多M的J2EE培训内容」· Java 代码 · 共 37 行

JAVA
37
字号
package slsbsample;

/*
 *
 * Copyright 2001, 2002 JavaCamp.com, Inc. All Rights Reserved.
 *
 * Grant the rights to the purchaser of the book to use the source code.
 * .
 * @author	Pravin Tulachan
 * @version	1.0
 * @see
 * @since
 *
 */

//package j2eebootcamp.developingEJB.chapter6.search;

import java.util.*;
//import java.lang.reflect.*;
import java.io.*;

/**
 ** <code>ScheduleDAOException</code> is a user-defined class.
 */
public class ScheduleDAOException
    extends Exception {

  public ScheduleDAOException(String str) {
    super(str);
  }

  public ScheduleDAOException() {
    super();
  }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?