#region License
// Copyright 2005-2019 Paul Kohler (https://github.com/paulkohler/minisqlquery). All rights reserved.
// This source code is made available under the terms of the GNU Lesser General Public License v3.0
// https://github.com/paulkohler/minisqlquery/blob/master/LICENSE
#endregion
using System;
using System.Runtime.Serialization;
namespace MiniSqlQuery.Core.Template
{
/// The template exception.
[Serializable]
public class TemplateException : Exception
{
/// Initializes a new instance of the class.
public TemplateException()
{
}
/// Initializes a new instance of the class.
/// The message.
public TemplateException(string message) : base(message)
{
}
/// Initializes a new instance of the class.
/// The message.
/// The inner.
public TemplateException(string message, Exception inner) : base(message, inner)
{
}
/// Initializes a new instance of the class.
/// The info.
/// The context.
protected TemplateException(
SerializationInfo info,
StreamingContext context) : base(info, context)
{
}
}
}