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

BadImageException.cs « Mono.PEToolkit « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ee75fb3ee8316cde0811fcd1a92f57aad332dc8 (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 {

	public class BadImageException : Exception {

		public BadImageException() : base()
		{
		}

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

}