Updated to .NET 7.0 and added Jenkinsfile.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace GameServiceWarden.Core.Module.Exceptions
|
||||
{
|
||||
[System.Serializable]
|
||||
public class ModuleLoadException : Exception
|
||||
{
|
||||
public ModuleLoadException() { }
|
||||
public ModuleLoadException(string message) : base(message) { }
|
||||
public ModuleLoadException(string message, Exception inner) : base(message, inner) { }
|
||||
protected ModuleLoadException(
|
||||
SerializationInfo info,
|
||||
StreamingContext context) : base(info, context) { }
|
||||
}
|
||||
}
|
@@ -0,0 +1,13 @@
|
||||
namespace GameServiceWarden.Core.Module.Exceptions
|
||||
{
|
||||
[System.Serializable]
|
||||
public class ServiceInitializationException : System.Exception
|
||||
{
|
||||
public ServiceInitializationException() { }
|
||||
public ServiceInitializationException(string message) : base(message) { }
|
||||
public ServiceInitializationException(string message, System.Exception inner) : base(message, inner) { }
|
||||
protected ServiceInitializationException(
|
||||
System.Runtime.Serialization.SerializationInfo info,
|
||||
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user