Skip to content

Commit 0b81aa5

Browse files
committed
---
yaml --- r: 4463 b: refs/heads/logging-alpha c: 06becd8 h: refs/heads/master i: 4461: 1eb63fd 4459: 2c9ccf8 4455: e3bae28 4447: 9c3f192
1 parent 78a2793 commit 0b81aa5

2 files changed

Lines changed: 38 additions & 1 deletion

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ refs/heads/compute-alpha: 969cba2627f1d53d352cc4a5ffe0879dacf65e6c
1212
refs/heads/dns-alpha: 2f90e7e338349287ace33375896907af0f032ca1
1313
refs/heads/dns-alpha-batch: 17442b07867021b85d0452f5f3eda29a3413288f
1414
refs/heads/gcs-nio: 283aeaf15efdcf3621eb6859f05e55ad7764375d
15-
refs/heads/logging-alpha: 4fdc8ee53b189a137aa990dca366db369e47cf9c
15+
refs/heads/logging-alpha: 06becd885dc0d4c45cd779a06be448b5179e77d1
1616
refs/tags/v0.1.0: a615317f7424ed58621b1f65d5c4d8cbbe8a6ed8
1717
refs/tags/v0.1.1: 7a7f6985fe465e9dd6a075af55493f42b4933be0
1818
refs/tags/v0.1.2: 3eb3fe866ba22487686048f45d927b8c8638ea3f
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* Copyright 2016 Google Inc. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package com.google.gcloud.dns;
18+
19+
import com.google.gcloud.BaseServiceException;
20+
21+
/**
22+
* DNS service exception.
23+
*/
24+
public class DnsException extends BaseServiceException {
25+
26+
private static final long serialVersionUID = 490302380416260252L;
27+
28+
public DnsException(int code, String message, boolean retryable) {
29+
super(code, message, retryable);
30+
}
31+
32+
public DnsException(int code, String message, boolean retryable, Exception cause) {
33+
super(code, message, retryable, cause);
34+
}
35+
36+
//TODO(mderka) Add translation and retry functionality. Created issue #593.
37+
}

0 commit comments

Comments
 (0)