Ejemplo n.º 1
0
 public PoolException(PoolExceptionType type)
 {
     _type = type;
 }
Ejemplo n.º 2
0
 /// Constructs a PoolException with a message and PoolExceptionType
 public PoolException(string message, PoolExceptionType exceptionType) : base(message)
 {
     type = exceptionType;
 }
Ejemplo n.º 3
0
		/// Constructs a PoolException with a message and PoolExceptionType
		public PoolException(string message, PoolExceptionType exceptionType) : base(message)
		{
			type = exceptionType;
		}