Taylohtio/AlertManager/SPSolutions.SharePoint.Aler.../SPSolutions.Common/SPSolutions.Trust/TrustException.cs

17 lines
279 B
C#

using System;
namespace SPSolutions.Trust
{
public class TrustException : Exception
{
public TrustException()
{
}
public TrustException(string message) : base(message)
{
}
public TrustException(string message, Exception inner) : base(message, inner)
{
}
}
}