strobe 0.1.0.beta.1 → 0.1.0.beta.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/strobe/resource/base.rb +0 -3
- data/lib/strobe.rb +3 -1
- metadata +2 -2
data/lib/strobe/resource/base.rb
CHANGED
data/lib/strobe.rb
CHANGED
@@ -36,9 +36,11 @@ module Strobe
|
|
36
36
|
|
37
37
|
# Errors
|
38
38
|
class StrobeError < StandardError ; end
|
39
|
-
class
|
39
|
+
class RequestError < StrobeError ; end
|
40
40
|
class ResourceNotFoundError < StrobeError ; end
|
41
41
|
class ServerError < StrobeError ; end
|
42
|
+
class UnauthenticatedError < StrobeError ; end
|
43
|
+
class ValidationError < StrobeError ; end
|
42
44
|
|
43
45
|
def self.connection
|
44
46
|
@connection
|