25 lines
603 B
C#
25 lines
603 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Prise.AssemblyScanning
|
|
{
|
|
[Serializable]
|
|
public class AssemblyScanningException : Exception
|
|
{
|
|
public AssemblyScanningException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public AssemblyScanningException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
|
|
public AssemblyScanningException()
|
|
{
|
|
}
|
|
|
|
protected AssemblyScanningException(SerializationInfo info, StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
}
|
|
} |