UNPKG

300 BJavaScriptView Raw
1var ArguMintsException = function(message) {
2
3 var _message = message;
4
5 this.__defineGetter__("message", function() {
6 return _message;
7 });
8
9 // see if we can't just push ourselves out there.
10};
11
12module.exports.ArguMintsException = ArguMintsException;
13