Exception: OpenStax::Aws::Template::TemplateInvalid
- Inherits:
-
StandardError
- Object
- StandardError
- OpenStax::Aws::Template::TemplateInvalid
- Defined in:
- lib/openstax/aws/template.rb
Instance Attribute Summary collapse
-
#template_body ⇒ Object
readonly
Returns the value of attribute template_body.
-
#template_path ⇒ Object
readonly
Returns the value of attribute template_path.
Instance Method Summary collapse
-
#initialize(msg, template_path, template_body) ⇒ TemplateInvalid
constructor
A new instance of TemplateInvalid.
Constructor Details
#initialize(msg, template_path, template_body) ⇒ TemplateInvalid
Returns a new instance of TemplateInvalid.
7 8 9 10 11 12 |
# File 'lib/openstax/aws/template.rb', line 7 def initialize(msg, template_path, template_body) @template_path = template_path @template_body = template_body super(msg) end |
Instance Attribute Details
#template_body ⇒ Object (readonly)
Returns the value of attribute template_body.
5 6 7 |
# File 'lib/openstax/aws/template.rb', line 5 def template_body @template_body end |
#template_path ⇒ Object (readonly)
Returns the value of attribute template_path.
5 6 7 |
# File 'lib/openstax/aws/template.rb', line 5 def template_path @template_path end |