Files
CustomizeTool/CustomizePlus/Profiles/Exceptions/ProfileException.cs
2024-03-18 00:15:03 +03:00

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)
{
}
}