class OmfEc::DSL::OEDLCommandException

Attributes

cmd[R]

Public Class Methods

new(cmd, msg = nil) click to toggle source
Calls superclass method
# File lib/omf_ec/dsl.rb, line 38
def initialize(cmd, msg = nil)
  @cmd = cmd
  msg ||= "Illegal command '#{cmd}' unsupported by OEDL"
  super(msg)
end