IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
ToolErrorException.cs
Go to the documentation of this file.
1using System;
2
4{
5
6 class ToolErrorException : Exception
7 {
8
13 public ToolErrorException(string message) : base(message)
14 {
15
16 }
17
23 public ToolErrorException(string message, Exception innerException) :
24 base(message, innerException)
25 {
26
27 }
28
29 }
30
31}
ToolErrorException(string message)
Initializes a new instance.
ToolErrorException(string message, Exception innerException)
Initializes a new instance.