1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.jclouds.vcloud;
20
21 import org.jclouds.http.HttpCommand;
22 import org.jclouds.http.HttpResponse;
23 import org.jclouds.http.HttpResponseException;
24 import org.jclouds.vcloud.domain.VCloudError;
25
26
27
28
29
30
31
32 public 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 }