zombiebox
Version:
ZombieBox is a JavaScript framework for development of Smart TV and STB applications
21 lines (18 loc) • 415 B
JavaScript
/*
* This file is part of the ZombieBox package.
*
* Copyright © 2012-2019, Interfaced
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
*/
export default class UnsupportedFeature extends Error {
/**
* @param {string} featureName
*/
constructor(featureName) {
super(`Unsupported feature "${featureName}"`);
}
}