pascalabcnet/VisualPascalABCNETLinux/MonoDebugging/Debugger/AbsentInformationException.cs

11 lines
216 B
C#
Raw Normal View History

2023-04-18 18:53:21 +03:00
using System;
namespace Mono.Debugger.Soft
{
public class AbsentInformationException : Exception {
public AbsentInformationException () : base ("Debug information is not available for this frame.") {
}
}
}