You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
584 B

/*
* Copyright (c) 2018 Jämes Ménétrey <james@menetrey.me>
*
* This file is part of the Keystone Java bindings which is released under MIT.
* See file LICENSE in the Java bindings folder for full license details.
*/
package keystone.exceptions;
import keystone.KeystoneError;
/**
* An exception that represents a failure to open the library Keystone.
*/
public class OpenFailedKeystoneException extends KeystoneException {
public OpenFailedKeystoneException(KeystoneError keystoneError) {
super(keystoneError, "Keystone library could not be opened");
}
}