1
0

SintaxError.js 136 B

123456
  1. export class SintaxError extends Error{
  2. constructor(...msg) {
  3. super(...msg);
  4. Error.captureStackTrace(this, SintaxError);
  5. }
  6. }