18 using System.Collections.Generic;
21 namespace Deveel.Data.Sql {
27 if (exceptionNames == null)
28 throw new ArgumentNullException(
"exceptionNames");
30 if (exceptionNames.Any(String.IsNullOrEmpty))
31 throw new ArgumentException();
34 ExceptionNames = exceptionNames;
39 : this(exceptionNames, false) {
43 : this(new[] {exceptionName}) {
46 public bool IsForOthers {
get;
private set; }
48 public IEnumerable<string> ExceptionNames {
get;
private set; }
HandledExceptions(IEnumerable< string > exceptionNames, bool others)
HandledExceptions(IEnumerable< string > exceptionNames)
HandledExceptions(string exceptionName)