~ruther/csharp-dll-injector

ref: 9daddd1b5f178e044575c9f6aab5da6b4bc52f07 csharp-dll-injector/DllUtils/Exceptions/OpenHandleException.cs -rw-r--r-- 666 bytes
9daddd1b — František Boháček Remove redundant code 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;

namespace DllUtils.Exceptions
{
    public class OpenHandleException : InjectionException
    {
        public OpenHandleException()
        {
        }

        public OpenHandleException(string message) : base(message)
        {
        }

        public OpenHandleException(string message, Exception innerException) : base(message, innerException)
        {
        }

        protected OpenHandleException(SerializationInfo info, StreamingContext context) : base(info, context)
        {
        }
    }
}
Do not follow this link