lib/textbringer/errors.rb in textbringer-0.1.4 vs lib/textbringer/errors.rb in textbringer-0.1.5

- old
+ new

@@ -7,6 +7,12 @@ class SearchError < EditorError end class ReadOnlyError < EditorError end + + class Quit < EditorError + def initialize + super("Quit") + end + end end