/*************************************************************************
* *
* CESeCore: CE Security Core *
* *
* This software is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or any later version. *
* *
* See terms of license at gnu.org. *
* *
*************************************************************************/
package org.cesecore.profiles;
import org.cesecore.CesecoreException;
/**
* An exception thrown when someone tries to access a profile that doesn't exist.
*
* @version $Id: ProfileDoesNotExistException.java 29395 2018-06-28 11:10:02Z andresjakobs $
*/
public class ProfileDoesNotExistException extends CesecoreException {
private static final long serialVersionUID = -1038676703612812109L;
/**
* Creates a new instance of ProfileDoesNotExistException
without detail message.
*/
public ProfileDoesNotExistException() {
super();
}
/**
* Constructs an instance of ProfileDoesNotExistException
with the specified detail message.
* @param msg the detail message.
*/
public ProfileDoesNotExistException(String msg) {
super(msg);
}
}