lib/rush/exceptions.rb in rush-0.2 vs lib/rush/exceptions.rb in rush-0.3

- old
+ new

@@ -21,6 +21,9 @@ # The name cannot contain a slash; use two operations, rename and then move, instead. class NameCannotContainSlash < Exception; end # You cannot move or copy entries to a path that is not a dir (should end with trailing slash). class NotADir < Exception; end + + # A user or permission value specified to set access was not valid. + class BadAccessSpecifier < Exception; end end