Update SnapshotException.java

This commit is contained in:
Andrea Cavalli 2021-02-07 02:12:43 +01:00
parent 370197c6e1
commit 871159641c
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ package it.cavallium.dbengine.client;
public class SnapshotException extends RuntimeException {
public SnapshotException(Exception ex) {
public SnapshotException(Throwable ex) {
super(ex);
}