mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			532 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			532 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, RestClient::ServiceUnavailable, Errno::ECONNREFUSED, SocketError].freeze
 | |
|   SMTP_EXCEPTIONS = [
 | |
|     Net::SMTPSyntaxError
 | |
|   ].freeze
 | |
| end
 | 
