mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			479 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			479 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
module ExceptionList
 | 
						|
  REST_CLIENT_EXCEPTIONS = [RestClient::NotFound, RestClient::GatewayTimeout, RestClient::BadRequest,
 | 
						|
                            RestClient::MethodNotAllowed, RestClient::Forbidden, RestClient::InternalServerError,
 | 
						|
                            RestClient::Exceptions::OpenTimeout, RestClient::Exceptions::ReadTimeout,
 | 
						|
                            RestClient::MovedPermanently, SocketError].freeze
 | 
						|
  SMTP_EXCEPTIONS = [
 | 
						|
    Net::SMTPSyntaxError
 | 
						|
  ].freeze
 | 
						|
end
 |