コード例 #1
0
ファイル: ObjectPool.cs プロジェクト: wlgys8/UniPool
 public PoolException(PoolExceptionType type)
 {
     _type = type;
 }
コード例 #2
0
 /// Constructs a PoolException with a message and PoolExceptionType
 public PoolException(string message, PoolExceptionType exceptionType) : base(message)
 {
     type = exceptionType;
 }
コード例 #3
0
ファイル: PoolException.cs プロジェクト: kuloulzx/strangeioc
		/// Constructs a PoolException with a message and PoolExceptionType
		public PoolException(string message, PoolExceptionType exceptionType) : base(message)
		{
			type = exceptionType;
		}