UNPKG

kindergarten

Version:

Kindergarten is a JavaScript library which helps programmers to achieve modular security using sandbox pattern

10 lines (8 loc) 243 B
'use strict'; exports.__esModule = true; exports.default = RestrictedMethodError; function RestrictedMethodError(message) { this.name = 'RestrictedMethodError'; this.message = message; } RestrictedMethodError.prototype = Error.prototype;