1  /**
     2   * com.sekati.except.IllegalOperationException
     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 Illegal Operation {@link Exception} Error.
    13   * An illegal operation has occurred that is not supported by the thower.
    14   */
    15  class com.sekati.except.IllegalOperationException extends Exception {
    16  
    17  	private var name:String = "Illegal Operation Exception Error";
    18  
    19  	/**
    20  	 * IllegalOperationException 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 IllegalOperationException(thrower:Object, message:String, stack:Array) {
    27  		super( thrower, message, stack );	
    28  	}
    29  }