1  /**
     2   * com.sekati.except.FatalArgumentException
     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.FatalException;
    10  
    11  /**
    12   * Throwable Fatal Argument {@link FatalException} Error.
    13   * A method has been invoked with an illegal or inappropriate argument.
    14   */
    15  class com.sekati.except.FatalArgumentException extends FatalException {
    16  
    17  	private var name:String = "Fatal Argument Exception Error";
    18  
    19  	/**
    20  	 * FatalArgumentException 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 FatalArgumentException(thrower:Object, message:String, stack:Array) {
    27  		super( thrower, message, stack );	
    28  	}
    29  }