Newer
Older
DNA / corlib / System / MulticastNotSupportedException.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 352 bytes First commit
using System;
using System.Collections.Generic;
using System.Text;

namespace System {
	public class MulticastNotSupportedException : SystemException {
		public MulticastNotSupportedException()
			: base("This operation cannot be performed with the specified delagates.") {
		}

		public MulticastNotSupportedException(string msg) : base(msg) { }
	}
}