IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
FindException.cs
Go to the documentation of this file.
1using System;
2
4{
5
10 internal class FindException : Exception
11 {
12
17 public FindException(string message) :
18 base(message)
19 {
20
21 }
22
27 public FindException(Exception innerException) :
28 base(innerException.Message, innerException)
29 {
30
31 }
32
38 public FindException(string message, Exception innerException) :
39 base(message, innerException)
40 {
41
42 }
43
44 }
45
46}