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) { } } }