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

ExpectedExceptionHandlerSequenceAttribute.cs « Assertions « Mono.Linker.Tests.Cases.Expectations « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a90456dc6ab6c6da9ef9e499e4b5eee42f7f7ee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace Mono.Linker.Tests.Cases.Expectations.Assertions
{
	[AttributeUsage (AttributeTargets.Method | AttributeTargets.Constructor, Inherited = false, AllowMultiple = false)]
	public class ExpectedExceptionHandlerSequenceAttribute : BaseInAssemblyAttribute
	{
		public ExpectedExceptionHandlerSequenceAttribute (string[] types)
		{
			if (types == null)
				throw new ArgumentNullException ();
		}
	}
}