forked from gooddata/gooddata-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGoodDataException.java
More file actions
31 lines (28 loc) · 866 Bytes
/
Copy pathGoodDataException.java
File metadata and controls
31 lines (28 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
* Copyright (C) 2004-2016, GoodData(R) Corporation. All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
package com.gooddata;
/**
* Signals that something unexpected happened in GoodData SDK.
*/
public class GoodDataException extends RuntimeException {
/**
* Construct a GoodDataException with the specified detail message.
*
* @param message the detail message
*/
public GoodDataException(String message) {
super(message);
}
/**
* Construct a GoodDataException with the specified detail message and cause.
*
* @param message the detail message
* @param cause the cause
*/
public GoodDataException(String message, Throwable cause) {
super(message, cause);
}
}