11 lines
263 B
C#
11 lines
263 B
C#
using System;
|
|
|
|
namespace Mono.Debugger.Soft
|
|
{
|
|
public class InvalidStackFrameException : Exception {
|
|
|
|
public InvalidStackFrameException () : base ("The requested operation cannot be completed because the specified stack frame is no longer valid.") {
|
|
}
|
|
}
|
|
}
|