com.mongodb.crypt.capi.MongoCryptException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb-crypt Show documentation
Show all versions of mongodb-crypt Show documentation
MongoDB client-side crypto support
The newest version!
/*
* Copyright 2019-present MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.mongodb.crypt.capi;
import com.mongodb.crypt.capi.CAPI.mongocrypt_status_t;
import static com.mongodb.crypt.capi.CAPI.mongocrypt_status_code;
import static org.bson.assertions.Assertions.isTrue;
/**
* Top level Exception for all Mongo Crypt CAPI exceptions
*/
public class MongoCryptException extends RuntimeException {
private static final long serialVersionUID = -5524416583514807953L;
private final int code;
/**
* @param msg the message
*/
public MongoCryptException(final String msg) {
super(msg);
this.code = -1;
}
/**
* @param msg the message
* @param cause the cause
*/
public MongoCryptException(final String msg, Throwable cause) {
super(msg, cause);
this.code = -1;
}
/**
* Construct an instance from a {@code mongocrypt_status_t}.
*
* @param status the status
*/
MongoCryptException(final mongocrypt_status_t status) {
super(CAPI.mongocrypt_status_message(status, null).toString());
isTrue("status not ok", !CAPI.mongocrypt_status_ok(status));
code = mongocrypt_status_code(status);
}
/**
* @return the error code for the exception.
*/
public int getCode() {
return code;
}
}