mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
616 B
27 lines
616 B
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace ZeroLevel.Services.AsService
|
|
{
|
|
[Serializable]
|
|
internal class InstallException : SystemException
|
|
{
|
|
public InstallException()
|
|
{
|
|
base.HResult = -2146232057;
|
|
}
|
|
|
|
public InstallException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public InstallException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
|
|
protected InstallException(SerializationInfo info, StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
}
|
|
}
|