Exception: Ice::UnsupportedEncodingException
- Inherits:
- 
      ProtocolException
      
        - Object
- StandardError
- Exception
- LocalException
- ProtocolException
- Ice::UnsupportedEncodingException
 
- Defined in:
- lib/Ice/LocalException.rb
Instance Attribute Summary collapse
- 
  
    
      #bad  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute bad. 
- 
  
    
      #supported  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute supported. 
Attributes inherited from ProtocolException
Instance Method Summary collapse
- 
  
    
      #initialize(reason = '', bad = ::Ice::EncodingVersion.new, supported = ::Ice::EncodingVersion.new)  ⇒ UnsupportedEncodingException 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of UnsupportedEncodingException. 
- #to_s ⇒ Object
Methods inherited from Exception
Constructor Details
#initialize(reason = '', bad = ::Ice::EncodingVersion.new, supported = ::Ice::EncodingVersion.new) ⇒ UnsupportedEncodingException
Returns a new instance of UnsupportedEncodingException.
| 705 706 707 708 709 | # File 'lib/Ice/LocalException.rb', line 705 def initialize(reason='', bad=::Ice::EncodingVersion.new, supported=::Ice::EncodingVersion.new) super(reason) @bad = bad @supported = supported end | 
Instance Attribute Details
#bad ⇒ Object
Returns the value of attribute bad.
| 715 716 717 | # File 'lib/Ice/LocalException.rb', line 715 def bad @bad end | 
#supported ⇒ Object
Returns the value of attribute supported.
| 715 716 717 | # File 'lib/Ice/LocalException.rb', line 715 def supported @supported end | 
Instance Method Details
#to_s ⇒ Object
| 711 712 713 | # File 'lib/Ice/LocalException.rb', line 711 def to_s '::Ice::UnsupportedEncodingException' end |