24 lines
497 B
C#
24 lines
497 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace CustomizePlus.Profiles.Exceptions;
|
|
|
|
internal class ProfileException : Exception
|
|
{
|
|
public ProfileException()
|
|
{
|
|
}
|
|
|
|
public ProfileException(string? message) : base(message)
|
|
{
|
|
}
|
|
|
|
public ProfileException(string? message, Exception? innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
|
|
protected ProfileException(SerializationInfo info, StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
}
|