mirror of
https://github.com/mrfluffy-dev/lpr.git
synced 2026-01-17 02:10:33 +00:00
Lets gooooo
This commit is contained in:
20
Models/InfeasibleException.cs
Normal file
20
Models/InfeasibleException.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Models
|
||||
{
|
||||
|
||||
[Serializable]
|
||||
public class InfeasibleException : Exception
|
||||
{
|
||||
public InfeasibleException() { }
|
||||
public InfeasibleException(string message) : base(message) { }
|
||||
public InfeasibleException(string message, Exception inner) : base(message, inner) { }
|
||||
protected InfeasibleException(
|
||||
System.Runtime.Serialization.SerializationInfo info,
|
||||
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user