9 lines
158 B
JavaScript
9 lines
158 B
JavaScript
module.exports = {
|
|
UnplayableError
|
|
}
|
|
|
|
function UnplayableError () {
|
|
this.message = 'Can\'t play any files in torrent'
|
|
}
|
|
UnplayableError.prototype = Error
|