Improve error handling
[mono.git] / mcs / class / System.Web / System.Web.UI / IgnoreUnknownContentAttribute.cs
1 //
2 // System.Web.UI.IgnoreUnknownContentAttribute.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7 // (C) 2003 Andreas Nahr
8 //
9
10 using System;
11
12 namespace System.Web.UI {
13
14         [AttributeUsage (AttributeTargets.Property)]
15         internal sealed class IgnoreUnknownContentAttribute : Attribute
16         {
17                 
18                 public IgnoreUnknownContentAttribute ()
19                 {
20                 }
21         }
22 }
23