Exception: Ice::FeatureNotSupportedException

Inherits:
LocalException show all
Defined in:
lib/Ice/LocalException.rb

Constant Summary collapse

ICE_TYPE =
T_FeatureNotSupportedException

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Exception

#ice_name, #inspect

Constructor Details

#initialize(unsupportedFeature = '') ⇒ FeatureNotSupportedException

Returns a new instance of FeatureNotSupportedException.



1023
1024
1025
# File 'lib/Ice/LocalException.rb', line 1023

def initialize(unsupportedFeature='')
    @unsupportedFeature = unsupportedFeature
end

Instance Attribute Details

#unsupportedFeatureObject

Returns the value of attribute unsupportedFeature.



1031
1032
1033
# File 'lib/Ice/LocalException.rb', line 1031

def unsupportedFeature
  @unsupportedFeature
end

Instance Method Details

#to_sObject



1027
1028
1029
# File 'lib/Ice/LocalException.rb', line 1027

def to_s
    'Ice::FeatureNotSupportedException'
end