pschelpdesk/Vendor/Prise/AssemblyLoading/AssemblyLoadException.cs
2024-11-04 20:45:34 +01:00

25 lines
597 B
C#

using System;
using System.Runtime.Serialization;
namespace Prise.AssemblyLoading
{
[Serializable]
public class AssemblyLoadingException : Exception
{
public AssemblyLoadingException(string message) : base(message)
{
}
public AssemblyLoadingException(string message, Exception innerException) : base(message, innerException)
{
}
public AssemblyLoadingException()
{
}
protected AssemblyLoadingException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}