function fError(msg, code) {
   this.message = msg;
   this.code = code || 0;
}

fError.UNKNOWN       = 0;
fError.UNAUTHORIZED  = 1;

