Skip to content

Commit f9be048

Browse files
author
Mark
committed
change VPackException to extend RuntimeException
1 parent c63258a commit f9be048

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/arangodb/velocypack/exception/VPackException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @author Mark - mark at arangodb.com
2525
*
2626
*/
27-
public abstract class VPackException extends Exception {
27+
public abstract class VPackException extends RuntimeException {
2828

2929
private static final long serialVersionUID = 3547943271830879415L;
3030

src/main/java/com/arangodb/velocypack/exception/VPackValueTypeException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @author Mark - mark at arangodb.com
2727
*
2828
*/
29-
public class VPackValueTypeException extends IllegalStateException {
29+
public class VPackValueTypeException extends VPackException {
3030

3131
private static final long serialVersionUID = 8128171173539033177L;
3232

0 commit comments

Comments
 (0)