You've already forked linux-packaging-mono
11 lines
216 B
C#
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.") {
|
|
}
|
|
}
|
|
}
|