pascalabcnet/VisualPascalABCNETLinux/MonoDebugging/Debugger/AbsentInformationException.cs
2023-04-18 17:53:21 +02:00

11 lines
216 B
C#

using System;
namespace Mono.Debugger.Soft
{
public class AbsentInformationException : Exception {
public AbsentInformationException () : base ("Debug information is not available for this frame.") {
}
}
}