X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fcommon%2Ferrors.rb;h=d0bcfe200ef14c187c29ac6bfe26ba8cb3be0be6;hp=3607b8527d772fbb4fcf79f6062f21bb08accd9c;hb=72696d3f6e95ef773af9727e9c3459b9038b0fc2;hpb=c6cab6b71770d14dad1115db90a00b990c44a58d diff --git a/lib/common/errors.rb b/lib/common/errors.rb index 3607b85..d0bcfe2 100644 --- a/lib/common/errors.rb +++ b/lib/common/errors.rb @@ -4,14 +4,14 @@ class DatabaseError < StandardError end -# Perhaps surprisingly, used to indicate that an account name is +# Perhaps surprisingly, used to indicate that an user name is # invalid. -class InvalidAccountError < StandardError +class InvalidUserError < StandardError end -# Used to indicate that an account does not exist on the filesystem. -class NonexistentAccountError < StandardError +# Used to indicate that an user does not exist on the filesystem. +class NonexistentUserError < StandardError end