class Exception

Public Class Methods

from_structure(structure) click to toggle source
# File lib/nestene/execution_error.rb, line 35
def self.from_structure structure
  structure ? Nestene::ExecutionError.from_structure(structure).to_exception : nil
end

Public Instance Methods

to_structure() click to toggle source
# File lib/nestene/execution_error.rb, line 31
def to_structure
  Nestene::ExecutionError.new(self).to_structure
end