make-error

WebJar for make-error

Лицензия

Лицензия

ISC
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

make-error
Последняя версия

Последняя версия

1.3.6
Дата

Дата

Тип

Тип

jar
Описание

Описание

make-error
WebJar for make-error
Ссылка на сайт

Ссылка на сайт

https://www.webjars.org
Система контроля версий

Система контроля версий

https://github.com/JsCommunity/make-error

Скачать make-error

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/make-error/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>make-error</artifactId>
    <version>1.3.6</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/make-error/
implementation 'org.webjars.npm:make-error:1.3.6'
// https://jarcasting.com/artifacts/org.webjars.npm/make-error/
implementation ("org.webjars.npm:make-error:1.3.6")
'org.webjars.npm:make-error:jar:1.3.6'
<dependency org="org.webjars.npm" name="make-error" rev="1.3.6">
  <artifact name="make-error" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='make-error', version='1.3.6')
)
libraryDependencies += "org.webjars.npm" % "make-error" % "1.3.6"
[org.webjars.npm/make-error "1.3.6"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

make-error

Package Version Build Status PackagePhobia Latest Commit

Make your own error types!

Features

  • Compatible Node & browsers
  • instanceof support
  • error.name & error.stack support
  • compatible with CSP (i.e. no eval())

Installation

Node & Browserify/Webpack

Installation of the npm package:

> npm install --save make-error

Then require the package:

var makeError = require("make-error");

Browser

You can directly use the build provided at unpkg.com:

<script src="https://unpkg.com/make-error@1/dist/make-error.js"></script>

Usage

Basic named error

var CustomError = makeError("CustomError");

// Parameters are forwarded to the super class (here Error).
throw new CustomError("a message");

Advanced error class

function CustomError(customValue) {
  CustomError.super.call(this, "custom error message");

  this.customValue = customValue;
}
makeError(CustomError);

// Feel free to extend the prototype.
CustomError.prototype.myMethod = function CustomError$myMethod() {
  console.log("CustomError.myMethod (%s, %s)", this.code, this.message);
};

//-----

try {
  throw new CustomError(42);
} catch (error) {
  error.myMethod();
}

Specialized error

var SpecializedError = makeError("SpecializedError", CustomError);

throw new SpecializedError(42);

Inheritance

Best for ES2015+.

import { BaseError } from "make-error";

class CustomError extends BaseError {
  constructor() {
    super("custom error message");
  }
}

Related

Contributions

Contributions are very welcomed, either on the documentation or on the code.

You may:

  • report any issue you've encountered;
  • fork and create a pull request.

License

ISC © Julien Fontanet

org.webjars.npm
Focused and well maintained JavaScript modules. Open to applications :)

Версии библиотеки

Версия
1.3.6
1.3.5
1.3.4
1.2.0
1.1.1