23 lines
467 B
C#
23 lines
467 B
C#
|
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace Piwigo.Client;
|
||
|
|
||
|
[Serializable]
|
||
|
public class PiwigoException : Exception
|
||
|
{
|
||
|
public PiwigoException()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
protected PiwigoException(SerializationInfo info, StreamingContext context) : base(info, context)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public PiwigoException(string? message) : base(message)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public PiwigoException(string? message, Exception? innerException) : base(message, innerException)
|
||
|
{
|
||
|
}
|
||
|
}
|