@pigalle/core.errors.undefined
Version:
An error to throw when undefined value is passed.
14 lines (11 loc) • 331 B
JavaScript
/**
* This file is part of pigalle.core.errors.undefined
*
* Copyright (c) 2018 SAS 9 Février.
*
* Distributed under the MIT License (license terms are at http://opensource.org/licenses/MIT).
*
*/
const {UndefinedError} = require('./undefined-error');
module.exports = {};
module.exports.UndefinedError = UndefinedError;