11 lines
244 B
C#
11 lines
244 B
C#
|
namespace Persistence.Client.CustomExceptions;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Internal Server Error (500)
|
|||
|
/// </summary>
|
|||
|
public class InternalServerException : Exception
|
|||
|
{
|
|||
|
public InternalServerException(string message)
|
|||
|
: base(message) { }
|
|||
|
}
|