scratch

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