⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nouniquelineexception.java

📁 利用BlueJ开发的一个类似小时候完的吃豆豆的小游戏
💻 JAVA
字号:
/* * NoUniqueLineException.java * * Created on March 4, 2003, 12:56 PM */package cs101.awt.geom;/** * This exception represents a condition where more than one line satisfies * a condition, and this prevents the throwing method from generating a  * valid return value. This condition generally implies the need for alternate * but forseable logic, and so it is a checked exception. * * @author  Patrick G. Heck, gus.heck@olin.edu * @version $Id: NoUniqueLineException.java,v 1.1 2003/03/04 23:22:04 gus Exp $ */public class NoUniqueLineException extends java.lang.Exception {        /**     * Creates a new instance of <code>NoUniqueLineException</code> without detail message.     */    public NoUniqueLineException() {    }            /**     * Constructs an instance of <code>NoUniqueLineException</code> with the specified detail message.     * @param msg the detail message.     */    public NoUniqueLineException(String msg) {        super(msg);    }}/* * $Log: NoUniqueLineException.java,v $ * Revision 1.1  2003/03/04 23:22:04  gus * Exceptions for shape utils * */

⌨️ 快捷键说明

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