Document BaseException

This commit is contained in:
Kegan Myers 2014-02-28 10:37:09 -06:00
parent c3b09a8c0d
commit d15b8a9149
1 changed files with 28 additions and 0 deletions

View File

@ -1,23 +1,51 @@
/**
* @module Typertext
* @submodule Http
* @submodule Json
*/
module Typertext {
export class BaseException<T> {
private code:number;
private custom:T;
private message:string;
/**
* A simple utility class to provide a defined way to pass exceptions occurring within Typertext
*
* @param {string} message
* @param {number} code
* @param {T} custom
* @constructor
*/
constructor(message:string, code:number, custom:T) {
this.message = message;
this.code = code;
this.custom = custom;
}
/**
* Accessor method
*
* @returns {number}
*/
public GetCode():number {
return this.code;
}
/**
* Accessor method
*
* @returns {string}
*/
public GetMessage():string {
return this.message;
}
/**
* Accessor method
*
* @returns {T}
*/
public GetCustom():T {
return this.custom;
}