| 1234567891011121314151617181920212223242526 |
- // ILSyntaxError.cs
- // Author: Sergey Chaban ([email protected])
- using System;
- namespace Mono.ILASM {
- public class ILSyntaxError : Exception {
- private Location loc = Location.Unknown;
- public ILSyntaxError () : base ()
- {
- }
- public ILSyntaxError (string msg) : base (msg)
- {
- }
- public ILSyntaxError (string msg, Location loc) : base (msg)
- {
- this.loc = loc.Clone () as Location;
- }
- }
- }
|