| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // System.Reflection.CustomAttributeFormatException.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- //
- using System.Globalization;
- using System.Runtime.Serialization;
- namespace System.Reflection
- {
- [Serializable]
- public class CustomAttributeFormatException : FormatException
- {
- // Constructors
- public CustomAttributeFormatException ()
- : base (Locale.GetText ("The Binary format of the custom attribute is invalid."))
- {
- }
- public CustomAttributeFormatException (string message)
- : base (message)
- {
- }
- public CustomAttributeFormatException (string message, Exception inner)
- : base (message, inner)
- {
- }
- protected CustomAttributeFormatException (SerializationInfo info,
- StreamingContext context)
- {
- }
- }
- }
|