コード例 #1
0
 public RepositoryException(RepositoryError error, string message, Exception innerException) : base(message, innerException)
 {
     Error = error;
 }
コード例 #2
0
 public RepositoryException(RepositoryError error, string message) : this(error, message, null)
 {
 }
コード例 #3
0
 public RepositoryException(RepositoryError error, Exception innerException) : this(error, null, innerException)
 {
 }
コード例 #4
0
 public RepositoryException(RepositoryError error) : this(error, null, null)
 {
 }