class documentation

class TemplateDoesNotExist(Exception):

View In Hierarchy

The exception used when a template does not exist. Optional arguments:

backend
The template backend class used when raising this exception.
tried
A list of sources that were tried when finding the template. This is formatted as a list of tuples containing (origin, status), where origin is an Origin object or duck type and status is a string with the reason the template wasn't found.
chain
A list of intermediate TemplateDoesNotExist exceptions. This is used to encapsulate multiple exceptions when loading templates from multiple engines.
Method __init__ Undocumented
Instance Variable backend Undocumented
Instance Variable chain Undocumented
Instance Variable tried Undocumented
def __init__(self, msg, tried=None, backend=None, chain=None):

Undocumented

backend =

Undocumented

chain =

Undocumented

tried =

Undocumented