
com.github.ibole.infrastructure.security.key.KeyStoreManagerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infrastructure-all Show documentation
Show all versions of infrastructure-all Show documentation
The all in one project of ibole infrastructure
The newest version!
/**
*
*/
package com.github.ibole.infrastructure.security.key;
import com.github.ibole.infrastructure.common.exception.GenericException;
/*********************************************************************************************.
*
*
* Copyright 2016, iBole Inc. All rights reserved.
*
*
*********************************************************************************************/
/**
* @author bwang ([email protected])
*
*/
public class KeyStoreManagerException extends GenericException {
/**
*
*/
private static final long serialVersionUID = 1L;
public KeyStoreManagerException(String msg, Throwable ex) {
super(msg, ex);
}
public KeyStoreManagerException(Throwable ex) {
super(ex);
}
public KeyStoreManagerException(String msg) {
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy