PHP Classes

File: public/js/lib/director/lib/director/http/responses.js

Recommend this page to a friend!
  Classes of Sergey Beskorovayniy   Silex MVC Blog   public/js/lib/director/lib/director/http/responses.js   Download  
File: public/js/lib/director/lib/director/http/responses.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Silex MVC Blog
MVC based blog using on the Silex micro-framework
Author: By
Last change:
Date: 7 years ago
Size: 1,812 bytes
 

Contents

Class file image Download
// // HTTP Error objectst // var util = require('util'); exports.NotModified = function () { this.status = 304; this.options = { removeContentHeaders: true }; }; util.inherits(exports.NotModified, Error); exports.BadRequest = function (msg) { msg = msg || 'Bad request'; this.status = 400; this.headers = {}; this.message = msg; this.body = { error: msg }; }; util.inherits(exports.BadRequest, Error); exports.NotAuthorized = function (msg) { msg = msg || 'Not Authorized'; this.status = 401; this.headers = {}; this.message = msg; this.body = { error: msg }; }; util.inherits(exports.NotAuthorized, Error); exports.Forbidden = function (msg) { msg = msg || 'Not Authorized'; this.status = 403; this.headers = {}; this.message = msg; this.body = { error: msg }; }; util.inherits(exports.Forbidden, Error); exports.NotFound = function (msg) { msg = msg || 'Not Found'; this.status = 404; this.headers = {}; this.message = msg; this.body = { error: msg }; }; util.inherits(exports.NotFound, Error); exports.MethodNotAllowed = function (allowed) { var msg = 'method not allowed.'; this.status = 405; this.headers = { allow: allowed }; this.message = msg; this.body = { error: msg }; }; util.inherits(exports.MethodNotAllowed, Error); exports.NotAcceptable = function (accept) { var msg = 'cannot generate "' + accept + '" response'; this.status = 406; this.headers = {}; this.message = msg; this.body = { error: msg, only: 'application/json' }; }; util.inherits(exports.NotAcceptable, Error); exports.NotImplemented = function (msg) { msg = msg || 'Not Implemented'; this.status = 501; this.headers = {}; this.message = msg; this.body = { error: msg }; }; util.inherits(exports.NotImplemented, Error);