TryGhost/Ghost

View on GitHub
ghost/admin/app/errors/member-import-error.js

Summary

Maintainability
A
0 mins
Test Coverage
export default class EmailFailedError extends Error {
    constructor({message, context, type = 'error'}) {
        super(message);
        this.name = 'MemberImportError';
        this.context = context;
        this.type = type;
    }
}