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