Skip to content

Commit

Permalink
Sanitize a bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandru Ciobanu committed Jan 3, 2016
1 parent a748b1c commit 384053b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion XtraLiteTemplates/Evaluation/EvaluationException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace XtraLiteTemplates.Evaluation
using XtraLiteTemplates.Expressions;

/// <summary>
/// The exception type thrown for any errors encountered during the evaluation of a template.
/// The exception type thrown for any errors encountered during the evaluation (execution) of a compiled template.
/// </summary>
[Serializable]
public class EvaluationException : InvalidOperationException
Expand Down
1 change: 1 addition & 0 deletions XtraLiteTemplates/Evaluation/InterpreterException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ namespace XtraLiteTemplates.Evaluation
/// <summary>
/// Exception type thrown for any encountered interpretation error.
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable", Justification = "Will never be serialized.")]
public class InterpreterException : FormatException
{
/// <summary>
Expand Down
3 changes: 2 additions & 1 deletion XtraLiteTemplates/Expressions/ExpressionException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ namespace XtraLiteTemplates.Expressions
using XtraLiteTemplates.Expressions.Operators;

/// <summary>
/// Exception type throws for any errors encountered during exception construction.
/// Exception type thrown for any errors encountered during expression construction.
/// </summary>
[Serializable]
public class ExpressionException : InvalidOperationException
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion XtraLiteTemplates/Expressions/ExpressionFlowSymbols.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ namespace XtraLiteTemplates.Expressions
using XtraLiteTemplates.Expressions.Operators;

/// <summary>
/// Supplies a set of standard flow symbols used during the expression building process.
/// Supplies a set of standard flow symbols used during the expression construction phase.
/// </summary>
public sealed class ExpressionFlowSymbols
{
Expand Down
1 change: 1 addition & 0 deletions XtraLiteTemplates/Parsing/ParseException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ namespace XtraLiteTemplates.Parsing
/// <summary>
/// The generic exception for all identified parsing errors. Instances of this class can only be created internally.
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable", Justification = "Will never be serialized.")]
public class ParseException : FormatException
{
/// <summary>
Expand Down

0 comments on commit 384053b

Please sign in to comment.