Class: Google::Apis::ToolresultsV1beta3::StackTrace
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ToolresultsV1beta3::StackTrace
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/toolresults_v1beta3/classes.rb,
lib/google/apis/toolresults_v1beta3/representations.rb,
lib/google/apis/toolresults_v1beta3/representations.rb 
Overview
A stacktrace.
Instance Attribute Summary collapse
- 
  
    
      #exception  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The stack trace message.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ StackTrace 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of StackTrace.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ StackTrace
Returns a new instance of StackTrace.
      2679 2680 2681  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2679 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#exception ⇒ String
The stack trace message. Required
Corresponds to the JSON property exception
      2677 2678 2679  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2677 def exception @exception end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2684 2685 2686  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2684 def update!(**args) @exception = args[:exception] if args.key?(:exception) end  |