scratch

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 74  →  ?path2? @ 75
/bower_components/yaml.js/src/Exception/DumpException.coffee
@@ -0,0 +1,12 @@
 
class DumpException extends Error
 
constructor: (@message, @parsedLine, @snippet) ->
 
toString: ->
if @parsedLine? and @snippet?
return '<DumpException> ' + @message + ' (line ' + @parsedLine + ': \'' + @snippet + '\')'
else
return '<DumpException> ' + @message
 
module.exports = DumpException