[Mono-list] System.UriFormatException
Scott Sanders
scott@stonecobra.com
Wed, 18 Jul 2001 09:59:37 -0700
This is a multi-part message in MIME format.
------=_NextPart_000_00B0_01C10F70.5AC4DF50
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Assembly:
corlib/System
ChangeLog @ mcs/class/corlib/System
2001-07-18 Scott Sanders scott@stonecobra.com
* UriFormatExcpetion.cs: Add - 85% complete
------=_NextPart_000_00B0_01C10F70.5AC4DF50
Content-Type: application/octet-stream;
name="UriFormatException.cs"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="UriFormatException.cs"
//
// System.UriFormatException.cs
//
// Author:
// Scott Sanders (scott@stonecobra.com)
//
// (C) 2001 Scott Sanders
//
using System.Runtime.Serialization;
namespace System {
public class UriFormatException : Exception {
// Constructors
public UriFormatException ()
: base ("Invalid URI format")
{
}
public UriFormatException (string message)
: base (message)
{
}
protected UriFormatException( SerializationInfo info, StreamingContext =
context)
: base ("UriFormatException: Please implement me")
{
//TODO - Implement me... The Beta2 docs say nothing about what this =
method does
}
}
}
------=_NextPart_000_00B0_01C10F70.5AC4DF50--