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

📄 fatalerror.java

📁 java编译器gjc源码 java编译环境
💻 JAVA
字号:
/**
 * @(#)FatalError.java	1.7 03/01/23
 *
 * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */
package com.sun.tools.javac.v8.util;

/**
 * Throwing an instance of this class causes immediate termination
 *  of the main compiler method.  It is used when some non-recoverable
 *  error has been detected in the compiler environment at runtime.
 */
public class FatalError extends Error {

    /**
     * Construct a <code>FatalError</code> with no detail message.
     */
    public FatalError() {
        super();
    }

    /**
      * Construct a <code>FatalError</code> with the specified detail message.
      *  @param s A string describing the failure (in most cases, this will be
      *           a locazlized string preceeded by the localized string
      *           "Fatal Error:").
      */
    public FatalError(String s) {
        super(s);
    }
}

⌨️ 快捷键说明

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