using System; namespace AsbCloudApp.Exceptions { /// /// Access denied exception /// public class ForbidException : Exception { public ForbidException() : base() { } public ForbidException(string message) : base(message) { } } }