##// END OF EJS Templates
merge
merge

File last commit:

r0:7110eac54b19 v1.0.0 default
r3:e9671275b348 merge tip default
Show More
NotAllowedException.js
6 lines | 193 B | application/javascript | JavascriptLexer
/ src / main / js / NotAllowedException.js
define(["dojo/_base/declare", "./HttpException"], function (declare, httpException) {
return declare([httpException], {
code: 405,
message: "Method Not Allowed"
});
});