public class CertNotValidException : Exception { public CertNotValidException() : base() { } public CertNotValidException(string message) : base(message) { } public CertNotValidException(string format, params object[] args) : base(string.Format(format, args)) { } public CertNotValidException(string message, Exception innerException) : base(message, innerException) { } public CertNotValidException(string format, Exception innerException, params object[] args) : base(string.Format(format, args), innerException) { } }
c# Create custom exception
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: only a member of this blog may post a comment.