1/* ----------------------------------------------- 2/* Authors: wearrrrr 3/* GNU General Public License v3.0: https://www.gnu.org/licenses/gpl-3.0.en.html 4/* Workerware Error Script 5/* ----------------------------------------------- */ 6 7class WWError extends Error { 8 constructor(message) { 9 super(message); 10 this.name = '[WorkerWare Exception]'; 11 } 12} 13 14