Exemple #1
0
        public GSL_ERROR(string message, GSL_ERR number, bool bDebug)
        {
            Message = message;
            Number  = number;

            if (bDebug)
            {
                throw new ArithmeticException(message);
            }
        }
Exemple #2
0
		public GSL_ERROR(string message, GSL_ERR number, bool bDebug)
		{
			this.Message = message;
			this.Number = number;

			if (bDebug)
				throw new ArithmeticException(message);
		}