##// END OF EJS Templates
initial port of implab/web
initial port of implab/web

File last commit:

r0:7110eac54b19 v1.0.0 default
r0:7110eac54b19 v1.0.0 default
Show More
NotFoundException.js
6 lines | 184 B | application/javascript | JavascriptLexer
/ src / main / js / NotFoundException.js
define(["dojo/_base/declare", "./HttpException"], function (declare, httpException) {
return declare([httpException], {
code: 404,
message: "Not found"
});
});