15 lines
		
	
	
		
			496 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			496 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """passbook saml source exceptions"""
 | |
| from passbook.lib.sentry import SentryIgnoredException
 | |
| 
 | |
| 
 | |
| class MissingSAMLResponse(SentryIgnoredException):
 | |
|     """Exception raised when request does not contain SAML Response."""
 | |
| 
 | |
| 
 | |
| class UnsupportedNameIDFormat(SentryIgnoredException):
 | |
|     """Exception raised when SAML Response contains NameID Format not supported."""
 | |
| 
 | |
| 
 | |
| class MismatchedRequestID(SentryIgnoredException):
 | |
|     """Exception raised when the returned request ID doesn't match the saved ID."""
 | 
