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

27 lines
645 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace CustomizePlus.Profiles.Exceptions;
internal class ProfileNotFoundException : ProfileException
{
public ProfileNotFoundException()
{
}
public ProfileNotFoundException(string? message) : base(message)
{
}
public ProfileNotFoundException(string? message, Exception? innerException) : base(message, innerException)
{
}
protected ProfileNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}