Tweak test script no issue #
[arvados.git] / src / main / java / org / arvados / client / exception / ArvadosClientException.java
1 /*
2  * Copyright (C) The Arvados Authors. All rights reserved.
3  *
4  * SPDX-License-Identifier: AGPL-3.0 OR Apache-2.0
5  *
6  */
7
8 package org.arvados.client.exception;
9
10 /**
11  * Parent exception for all exceptions in library.
12  * More specific exceptions like ArvadosApiException extend this class.
13  */
14 public class ArvadosClientException extends RuntimeException {
15
16     public ArvadosClientException(String message) {
17         super(message);
18     }
19
20     public ArvadosClientException(String message, Throwable cause) {
21         super(message, cause);
22     }
23
24     public ArvadosClientException(Throwable cause) {
25         super(cause);
26     }
27 }