Exception: Bullion::Acme::Error
- Inherits:
-
Error
- Object
- StandardError
- Error
- Bullion::Acme::Error
show all
- Defined in:
- lib/bullion/acme/error.rb
Overview
ACME protocol errors super class
Instance Method Summary
collapse
Instance Method Details
#acme_error ⇒ Object
16
17
18
|
# File 'lib/bullion/acme/error.rb', line 16
def acme_error
acme_preface + acme_type
end
|
#acme_preface ⇒ Object
12
13
14
|
# File 'lib/bullion/acme/error.rb', line 12
def acme_preface
"urn:ietf:params:acme:error:"
end
|
#acme_type ⇒ Object
8
9
10
|
# File 'lib/bullion/acme/error.rb', line 8
def acme_type
"genericError"
end
|