mirror of
https://github.com/mrfluffy-dev/lpr.git
synced 2026-01-17 02:10:33 +00:00
21 lines
602 B
C#
21 lines
602 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Models
|
|
{
|
|
|
|
[Serializable]
|
|
public class CustomException : Exception
|
|
{
|
|
public CustomException() { }
|
|
public CustomException(string message) : base(message) { }
|
|
public CustomException(string message, Exception inner) : base(message, inner) { }
|
|
protected CustomException(
|
|
System.Runtime.Serialization.SerializationInfo info,
|
|
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
|
|
}
|
|
}
|