Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BadMetaDataException.cs « metadata « Mono.PEToolkit « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16e321f5b73287122a3d5bfb62a90a0051ce23d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (c) 2002 Sergey Chaban <serge@wildwestsoftware.com>
 */

using System;

namespace Mono.PEToolkit.Metadata {

	public class BadMetaDataException : Exception {

		public BadMetaDataException() : base()
		{
		}

		public BadMetaDataException(string msg) : base(msg)
		{
		}
	}

}