coins
クラス FatalError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Error
              |
              +--coins.FatalError
すべての実装インタフェース:
java.io.Serializable

public class FatalError
extends java.lang.Error

Abstraction of a fatal error.
A FatalError represents a disastarous event and throwing it will stops the entire compilation. A compiler driver is not expected to catch a FatalError, and the VM will show a stack trace.
FatalError thrower must write an error message, because the compiler driver never writes it.

関連項目:
直列化された形式

フィールドの概要
 
クラス java.lang.Error から継承したフィールド
 
コンストラクタの概要
FatalError(int messageNumber, java.lang.String message)
          Creates a fatal error. //## Tan
FatalError(java.lang.String message)
          Creates a fatal error.
 
クラス java.lang.Throwable から継承したメソッド
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

FatalError

public FatalError(java.lang.String message)
Creates a fatal error.

パラメータ:
message - a message describing this error.

FatalError

public FatalError(int messageNumber,
                  java.lang.String message)
Creates a fatal error. //## Tan

パラメータ:
messageNumber - message number.
message - a message describing this error.