Implemented rest of profile methods for IPC
This commit is contained in:
23
CustomizePlus/Profiles/Exceptions/ActorNotFoundException.cs
Normal file
23
CustomizePlus/Profiles/Exceptions/ActorNotFoundException.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace CustomizePlus.Profiles.Exceptions;
|
||||
|
||||
internal class ActorNotFoundException : ProfileException
|
||||
{
|
||||
public ActorNotFoundException()
|
||||
{
|
||||
}
|
||||
|
||||
public ActorNotFoundException(string? message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public ActorNotFoundException(string? message, Exception? innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
|
||||
protected ActorNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context)
|
||||
{
|
||||
}
|
||||
}
|
||||
23
CustomizePlus/Profiles/Exceptions/ProfileException.cs
Normal file
23
CustomizePlus/Profiles/Exceptions/ProfileException.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user