Table of Contents

Class TemplateParsingException

Namespace
Dynamicweb.Rendering
Assembly
Dynamicweb.Core.dll
public class TemplateParsingException : TemplateException, ISerializable
Inheritance
TemplateParsingException
Implements
Inherited Members

Constructors

TemplateParsingException(Template, string, int, int)

public TemplateParsingException(Template template, string message, int line, int column)

Parameters

template Template
message string
line int
column int

TemplateParsingException(Template, string, int, int, Exception)

public TemplateParsingException(Template template, string message, int line, int column, Exception innerException)

Parameters

template Template
message string
line int
column int
innerException Exception

Properties

Column

Gets the column the parsing error occured.

public int Column { get; }

Property Value

int

Line

Gets the line the parsing error occured.

public int Line { get; }

Property Value

int
To top