@pigalle/core.errors.notimplemented
Version:
An error class for throwing "not implemented".
14 lines (11 loc) • 356 B
JavaScript
/**
* This file is part of pigalle.core.errors.notimplemented
*
* Copyright (c) 2018 SAS 9 Février.
*
* Distributed under the MIT License (license terms are at http://opensource.org/licenses/MIT).
*
*/
const {NotImplementedError} = require('./notimplemented-error');
module.exports = {};
module.exports.NotImplementedError = NotImplementedError;