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