forked from ddrilling/AsbCloudServer
24 lines
482 B
C#
24 lines
482 B
C#
using System;
|
|
|
|
namespace AsbCloudApp.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// Access denied exception
|
|
/// </summary>
|
|
public class ForbidException : Exception
|
|
{
|
|
/// <summary>
|
|
/// Access denied exception
|
|
/// </summary>
|
|
public ForbidException()
|
|
: base() { }
|
|
|
|
/// <summary>
|
|
/// Access denied exception
|
|
/// </summary>
|
|
public ForbidException(string message)
|
|
: base(message) { }
|
|
|
|
}
|
|
}
|