New test.
[mono.git] / mcs / ilasm / scanner / ILTokenizingException.cs
1 //
2 // Mono.ILASM.ILTokenizingException
3 //
4 // Author(s):
5 //  Jackson Harper (jackson@ximian.com)
6 //
7 // Copyright 2004 Novell, Inc (http://www.novell.com)
8 //
9
10
11 using System;
12
13 namespace Mono.ILASM {
14
15         public class ILTokenizingException : ILAsmException {
16
17                 public readonly string Token;
18
19                 public ILTokenizingException (Location location, string token)
20                         : base (location, token)
21                 {
22                         Token = token;
23                 }
24         }
25
26 }
27
28