Class: CadenceThrift::DomainAlreadyExistsError

Inherits:
Thrift::Exception
  • Object
show all
Includes:
Thrift::Struct, Thrift::Struct_Union
Defined in:
lib/gen/thrift/shared_types.rb,
lib/gen/thrift/shared_types.rb

Constant Summary collapse

MESSAGE =
1
FIELDS =
{
  MESSAGE => {:type => ::Thrift::Types::STRING, :name => 'message'}
}

Instance Method Summary collapse

Constructor Details

#initialize(message = nil) ⇒ DomainAlreadyExistsError

Returns a new instance of DomainAlreadyExistsError.



627
628
629
630
# File 'lib/gen/thrift/shared_types.rb', line 627

def initialize(message=nil)
  super()
  self.message = message
end

Instance Method Details

#struct_fieldsObject



638
# File 'lib/gen/thrift/shared_types.rb', line 638

def struct_fields; FIELDS; end

#validateObject

Raises:

  • (::Thrift::ProtocolException)


640
641
642
# File 'lib/gen/thrift/shared_types.rb', line 640

def validate
  raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field message is unset!') unless @message
end