summaryrefslogtreecommitdiff
path: root/DesignPatterns/src/app/DesignPatterns.Factory/Exceptions/CannotAddMoniesException.cs
blob: 421883cfd6c7ff12eff42dd5062f6880a68940a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Runtime.Serialization;

namespace DesignPatterns.Factory {
	[Serializable]
	public class CannotAddMoniesException : ArgumentException
	{
		public CannotAddMoniesException() { }
		public CannotAddMoniesException(string message) : base(message) { }
		public CannotAddMoniesException(string message, Exception innerException) : base(message, innerException) { }
		protected CannotAddMoniesException(SerializationInfo info, StreamingContext context) : base(info, context) { }
	}
}