1  /**
     2   * com.sekati.except.IThrowable
     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  /**
    10   * Interface describing all {@link com.sekati.except.Throwable}'s.
    11   */
    12  interface com.sekati.except.IThrowable {
    13  
    14  	public function getErrorCode():String;
    15  
    16  	public function getThrower():Object;
    17  
    18  	public function getStack():Array;
    19  
    20  	public function getType():String;
    21  
    22  	public function getName():String;
    23  }