IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
ResolutionException.cs
Go to the documentation of this file.
1using System;
2
4{
5
9 internal class ResolutionException : Exception
10 {
11
15 public ResolutionException(string message) : base(message)
16 {
17
18 }
19
25 public ResolutionException(string message, Exception innerException) :
26 base(message, innerException)
27 {
28
29 }
30
31 }
32
33}