discordrb 1.6.6 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of discordrb might be problematic. Click here for more details.

@@ -1,12 +0,0 @@
1
- module Discordrb
2
- # Raised when authentication data is invalid or incorrect.
3
- class InvalidAuthenticationException < RuntimeError; end
4
-
5
- # Raised when a HTTP status code indicates a failure
6
- class HTTPStatusException < RuntimeError
7
- attr_reader :status
8
- def initialize(status)
9
- @status = status
10
- end
11
- end
12
- end