コード例 #1
0
 public object Any(AlwaysThrows request)
 {
     throw new Exception(request.GetType().Name);
 }
コード例 #2
0
 public object Any(AlwaysThrows request)
 {
     throw new ArgumentException("This service always throws an error");
 }
コード例 #3
0
 public object Any(AlwaysThrows request)
 {
     throw new Exception(request.GetType().Name);
 }
コード例 #4
0
	    public object Any(AlwaysThrows request)
		{
			throw new ArgumentException("This service always throws an error");
		}
コード例 #5
0
 public object Any(AlwaysThrows request)
 {
     throw new HttpError(HttpStatusCode.BadRequest, "ALWAYS THROWS");
 }