files.com 1.0.208 → 1.0.209
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/lib/files.com/errors.rb +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d06c82fb0e225793e20bec0bdd39f2c8d559de5632bbcbecf1e99c24859e04a
|
|
4
|
+
data.tar.gz: 02b730b1f1f91e8b666da4f4412631bc5cc7210c1518467a5b5bc8be977a3307
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06046ae286bd6c45662b3a1101023e06253a34a538bc32a21cb5406052869142cd01bd461ed20f11361e3047dc6550a6de1060cee6cc161c02e07e7953ab23dd
|
|
7
|
+
data.tar.gz: 279632e14066db502162050640eeb79bbc6581b9f95b53981ac75b9ee7d80276cb111123941014105d2986ee15ca5aecbfb5e1b755757d3f43579b60b4d1e9d6
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.209
|
data/lib/files.com/errors.rb
CHANGED
|
@@ -191,6 +191,9 @@ module Files
|
|
|
191
191
|
class TooManyLoginAttemptsError < RateLimitedError; end
|
|
192
192
|
class TooManyRequestsError < RateLimitedError; end
|
|
193
193
|
|
|
194
|
+
class ServiceUnavailableError < APIError; end
|
|
195
|
+
class UploadsUnavailableError < ServiceUnavailableError; end
|
|
196
|
+
|
|
194
197
|
class SiteConfigurationError < APIError; end
|
|
195
198
|
class AccountAlreadyExistsError < SiteConfigurationError; end
|
|
196
199
|
class AccountOverdueError < SiteConfigurationError; end
|