Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

errors.js 575B

12345678910111213141516171819202122
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.UnexpectedStateError = void 0;
  6. var _es6Error = _interopRequireDefault(require("es6-error"));
  7. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  8. /* eslint-disable fp/no-class, fp/no-this */
  9. class UnexpectedStateError extends _es6Error.default {
  10. constructor(message, code = 'UNEXPECTED_STATE_ERROR') {
  11. super(message);
  12. this.code = code;
  13. }
  14. }
  15. exports.UnexpectedStateError = UnexpectedStateError;
  16. //# sourceMappingURL=errors.js.map