Merged last set of changes from original SVN location

This commit is contained in:
Tobias Lütke
2008-05-08 11:34:43 -04:00
parent 1d647361e1
commit 7f58cbf82d
10 changed files with 95 additions and 33 deletions
+8 -5
View File
@@ -1,7 +1,10 @@
module Liquid
class FilterNotFound < StandardError
end
class FileSystemError < StandardError
end
class Error < ::StandardError; end
class ArgumentError < Error; end
class ContextError < Error; end
class FilterNotFound < Error; end
class FileSystemError < Error; end
class StandardError < Error; end
class SyntaxError < Error; end
end