Skip to content
Snippets Groups Projects
ExternallyVisibleException.cs 323 B
using System;

namespace HaaSMiddleware.BusinessLogicTier.Logic {
	public class ExternallyVisibleException : ApplicationException {
		public ExternallyVisibleException(string message) : base(message) {}
		public ExternallyVisibleException(string message, Exception innerException) : base(message, innerException) {}
	}
}