Exception: BadParamsException
- Inherits:
 - 
      StandardError
      
        
- Object
 - StandardError
 - BadParamsException
 
 - Defined in:
 - backend/app/lib/exceptions.rb
 
Instance Attribute Summary (collapse)
- 
  
    
      - (Object) params 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute params.
 
Instance Method Summary (collapse)
- 
  
    
      - (BadParamsException) initialize(params) 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of BadParamsException.
 
Constructor Details
- (BadParamsException) initialize(params)
Returns a new instance of BadParamsException
      6 7 8  | 
    
      # File 'backend/app/lib/exceptions.rb', line 6 def initialize(params) @params = params end  | 
  
Instance Attribute Details
- (Object) params
Returns the value of attribute params
      4 5 6  | 
    
      # File 'backend/app/lib/exceptions.rb', line 4 def params @params end  |