public object Any(AlwaysThrows request)
 {
     throw new Exception(request.GetType().Name);
 }
 public object Any(AlwaysThrows request)
 {
     throw new ArgumentException("This service always throws an error");
 }
 public object Any(AlwaysThrows request)
 {
     throw new Exception(request.GetType().Name);
 }
	    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");
 }