a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
47 lines
932 B
C#
47 lines
932 B
C#
//
|
|
// System.InvalidDataException.cs
|
|
//
|
|
// Authors:
|
|
// Christopher James Lahey <clahey@ximian.com>
|
|
// Andreas Nahr (ClassDevelopment@A-SoftTech.com)
|
|
//
|
|
// Copyright (C) 2004, 2006 Novell, Inc (http://www.novell.com)
|
|
//
|
|
|
|
using System.Globalization;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace System.IO
|
|
{
|
|
[Serializable]
|
|
public sealed class InvalidDataException : SystemException
|
|
{
|
|
const int Result = unchecked ((int)0x80131503);
|
|
|
|
// Constructors
|
|
public InvalidDataException ()
|
|
: base (Locale.GetText ("Invalid data format."))
|
|
{
|
|
HResult = Result;
|
|
}
|
|
|
|
public InvalidDataException (string message)
|
|
: base (message)
|
|
{
|
|
HResult = Result;
|
|
}
|
|
|
|
public InvalidDataException (string message, Exception innerException)
|
|
: base (message, innerException)
|
|
{
|
|
HResult = Result;
|
|
}
|
|
|
|
private InvalidDataException (SerializationInfo info, StreamingContext context)
|
|
: base (info, context)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|