We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 338a2ff commit baabc6cCopy full SHA for baabc6c
lib/github_api/error/validations.rb
@@ -0,0 +1,18 @@
1
+# encoding: utf-8
2
+
3
+module Github #:nodoc
4
+ # Raised when passed parameters are missing or contain wrong values.
5
+ module Error
6
+ class Validations < ClientError
7
+ def initialize(errors)
8
+ super(
9
+ generate_message(
10
+ :problem => '',
11
+ :summary => '',
12
+ :resolution => ''
13
+ )
14
15
+ end
16
17
+ end # Error
18
+end # Github
0 commit comments