| | 1 | | // Copyright (c) ZeroC, Inc. |
| | 2 | |
|
| | 3 | | #nullable enable |
| | 4 | |
|
| | 5 | | namespace Ice; |
| | 6 | |
|
| | 7 | | /// <summary> |
| | 8 | | /// Base class for Ice run-time exceptions. |
| | 9 | | /// </summary> |
| | 10 | | public class LocalException : Ice.Exception |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// Initializes a new instance of the <see cref="LocalException" /> class. |
| | 14 | | /// </summary> |
| | 15 | | /// <param name="message">The exception message.</param> |
| | 16 | | /// <param name="innerException">The inner exception.</param> |
| | 17 | | public LocalException(string? message, System.Exception? innerException = null) |
| 1 | 18 | | : base(message, innerException) |
| | 19 | | { |
| 1 | 20 | | } |
| | 21 | |
|
| 0 | 22 | | public override string ice_id() => "::Ice::LocalException"; |
| | 23 | | } |