IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
InternalException.cs
Go to the documentation of this file.
1using System;
2
3namespace IKVM.Runtime
4{
5
9 public class InternalException : Exception
10 {
11
16 base()
17 {
18
19 }
20
25 public InternalException(string message) :
26 base(message)
27 {
28
29 }
30
36 public InternalException(string message, Exception innerException) :
37 base(message, innerException)
38 {
39
40 }
41
42 }
43
44}
Represents an internal error that occurred within IKVM.
InternalException()
Initializes a new instance.
InternalException(string message)
Initializes a new instance.
InternalException(string message, Exception innerException)
Initializes a new instance.