1  /**
     2   * com.sekati.except.FatalException
     3   * @version 1.0.5
     4   * @author jason m horwitz | sekati.com
     5   * Copyright (C) 2007  jason m horwitz, Sekat LLC. All Rights Reserved.
     6   * Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
     7   */
     8  
     9  import com.sekati.except.Exception;
    10  
    11  /**
    12   * Throwable Fatal {@link Exception} (logs with level type 'fatal').
    13   */
    14  class com.sekati.except.FatalException extends Exception {
    15  
    16  	private var name:String = "Fatal Exception Error";
    17  	private var type:String = "fatal";
    18  
    19  	/**
    20  	 * FatalException Constructor
    21  	 * @param thrower (Object) origin of the error
    22  	 * @param message (String) error message to display
    23  	 * @param stack (Array) thrower arguments stack
    24  	 * @return Void
    25  	 */
    26  	public function FatalException(thrower:Object, message:String, stack:Array) {
    27  		super( thrower, message, stack );
    28  	}
    29  }