lepu-test-platform-web/node_modules/postcss-loader/lib/Error.js

18 lines
333 B
JavaScript
Raw Normal View History

'use strict'
class SyntaxError extends Error {
constructor (err) {
super(err)
this.name = 'Syntax Error'
this.message = ''
this.message += `${this.name} \n\n(${err.line}:${err.column}) ${err.reason}`
this.message += `\n\n${err.showSourceCode()}\n`
this.stack = false
}
}
module.exports = SyntaxError