Package genshi :: Package template :: Module loader :: Class TemplateNotFound

Class TemplateNotFound

              object --+            
                       |            
exceptions.BaseException --+        
                           |        
        exceptions.Exception --+    
                               |    
              base.TemplateError --+
                                   |
                                  TemplateNotFound

Exception raised when a specific template file could not be found.
Instance Methods
 
__init__(self, name, search_path)
Create the exception.

Inherited from exceptions.Exception: __new__

Inherited from exceptions.BaseException: __delattr__, __getattribute__, __getitem__, __getslice__, __reduce__, __repr__, __setattr__, __setstate__, __str__, __unicode__

Inherited from object: __format__, __hash__, __reduce_ex__, __sizeof__, __subclasshook__

Instance Variables

Inherited from base.TemplateError: filename, lineno, msg, offset

Properties

Inherited from exceptions.BaseException: args, message

Inherited from object: __class__

Method Details

__init__(self, name, search_path)
(Constructor)

 
Create the exception.
Parameters:
  • name - the filename of the template
  • search_path - the search path used to lookup the template
Overrides: object.__init__