Exception: Dart2JsExceptions::PrepareOutputException
- Inherits:
-
Dart2JsException
- Object
- Exception
- Dart2JsException
- Dart2JsExceptions::PrepareOutputException
- Defined in:
- lib/dart2js_exceptions.rb
Instance Method Summary collapse
-
#initialize(compiler, reason) ⇒ PrepareOutputException
constructor
A new instance of PrepareOutputException.
- #message ⇒ Object
Constructor Details
#initialize(compiler, reason) ⇒ PrepareOutputException
Returns a new instance of PrepareOutputException.
31 32 33 34 |
# File 'lib/dart2js_exceptions.rb', line 31 def initialize(compiler, reason) super(compiler) @reason = reason end |
Instance Method Details
#message ⇒ Object
36 37 38 |
# File 'lib/dart2js_exceptions.rb', line 36 def "dart2js prepare_output failed\n out_file: #{@instance.out_file}\n output_path: #{@instance.output_path}\n reason: #{@reason}" end |