mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	git-svn-id: http://code.djangoproject.com/svn/django/trunk@12723 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			11 lines
		
	
	
		
			343 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			343 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf8 -*-
 | |
| 
 | |
| class BrokenException(Exception):
 | |
|     pass
 | |
| 
 | |
| except_args = ('Broken!',           # plain exception with ASCII text
 | |
|                u'¡Broken!',         # non-ASCII unicode data
 | |
|                '¡Broken!',          # non-ASCII, utf-8 encoded bytestring
 | |
|                '\xa1Broken!', )     # non-ASCII, latin1 bytestring
 | |
| 
 |