EMMA Coverage Report (generated Mon Oct 17 05:41:20 EDT 2011)
[all classes][org.jclouds.vcloud]

COVERAGE SUMMARY FOR SOURCE FILE [VCloudResponseException.java]

nameclass, %method, %block, %line, %
VCloudResponseException.java100% (1/1)33%  (2/6)42%  (33/79)33%  (5/15)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class VCloudResponseException100% (1/1)33%  (2/6)42%  (33/79)33%  (5/15)
VCloudResponseException (HttpCommand, HttpResponse, VCloudError, Throwable): ... 0%   (0/1)0%   (0/24)0%   (0/3)
VCloudResponseException (String, HttpCommand, HttpResponse, VCloudError): void 0%   (0/1)0%   (0/9)0%   (0/3)
VCloudResponseException (String, HttpCommand, HttpResponse, VCloudError, Thro... 0%   (0/1)0%   (0/10)0%   (0/3)
getError (): VCloudError 0%   (0/1)0%   (0/3)0%   (0/1)
VCloudResponseException (HttpCommand, HttpResponse, VCloudError): void 100% (1/1)100% (29/29)100% (3/3)
setError (VCloudError): void 100% (1/1)100% (4/4)100% (2/2)

1/**
2 * Licensed to jclouds, Inc. (jclouds) under one or more
3 * contributor license agreements.  See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership.  jclouds licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License.  You may obtain a copy of the License at
9 *
10 *   http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied.  See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19package org.jclouds.vcloud;
20 
21import org.jclouds.http.HttpCommand;
22import org.jclouds.http.HttpResponse;
23import org.jclouds.http.HttpResponseException;
24import org.jclouds.vcloud.domain.VCloudError;
25 
26/**
27 * Encapsulates an VCloud Error.
28 * 
29 * @author Adrian Cole
30 * 
31 */
32public class VCloudResponseException extends HttpResponseException {
33 
34   private static final long serialVersionUID = 1L;
35 
36   private org.jclouds.vcloud.domain.VCloudError error;
37 
38   public VCloudResponseException(HttpCommand command, HttpResponse response, VCloudError error) {
39      super(String.format("request %s failed with code %s, error: %s", command.getCurrentRequest().getRequestLine(), response
40               .getStatusCode(), error.toString()), command, response);
41      this.setError(error);
42 
43   }
44 
45   public VCloudResponseException(HttpCommand command, HttpResponse response, VCloudError error, Throwable cause) {
46      super(String.format("request %1$s failed with error: %2$s", command.getCurrentRequest().getRequestLine(), error
47               .toString()), command, response, cause);
48      this.setError(error);
49 
50   }
51 
52   public VCloudResponseException(String message, HttpCommand command, HttpResponse response, VCloudError error) {
53      super(message, command, response);
54      this.setError(error);
55 
56   }
57 
58   public VCloudResponseException(String message, HttpCommand command, HttpResponse response, VCloudError error,
59            Throwable cause) {
60      super(message, command, response, cause);
61      this.setError(error);
62 
63   }
64 
65   public void setError(VCloudError error) {
66      this.error = error;
67   }
68 
69   public VCloudError getError() {
70      return error;
71   }
72 
73}

[all classes][org.jclouds.vcloud]
EMMA 2.0.5312 (C) Vladimir Roubtsov