booknotfoundexception.java

来自「一个java写的加密算法」· Java 代码 · 共 21 行

JAVA
21
字号
/* * Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved. * Use is subject to license terms. */package samples.webapps.bookstore.exception;/** This application exception indicates that a book  *  has not been found.*/public class BookNotFoundException extends Exception {    public BookNotFoundException () { }    public BookNotFoundException (String msg) {        super(msg);    } }

⌨️ 快捷键说明

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