/corelib-storage/src/main/java/eu/europeana/corelib/edm/exceptions/MongoDBException.java
https://gitlab.com/Aaeinstein54/corelib · Java · 39 lines · 12 code · 5 blank · 22 comment · 0 complexity · 709c9246f4b7bbdd7e8e212d9f00c65b MD5 · raw file
- /*
- * Copyright 2007-2012 The Europeana Foundation
- *
- * Licenced under the EUPL, Version 1.1 (the "Licence") and subsequent versions as approved
- * by the European Commission;
- * You may not use this work except in compliance with the Licence.
- *
- * You may obtain a copy of the Licence at:
- * http://joinup.ec.europa.eu/software/page/eupl
- *
- * Unless required by applicable law or agreed to in writing, software distributed under
- * the Licence is distributed on an "AS IS" basis, without warranties or conditions of
- * any kind, either express or implied.
- * See the Licence for the specific language governing permissions and limitations under
- * the Licence.
- */
- package eu.europeana.corelib.edm.exceptions;
- import eu.europeana.corelib.definitions.exception.EuropeanaException;
- import eu.europeana.corelib.definitions.exception.ProblemType;
- /**
- * Basic MongoDBException
- *
- * @author Yorgos.Mamakis@ kb.nl
- *
- */
- public class MongoDBException extends EuropeanaException {
- private static final long serialVersionUID = 4785113365867141067L;
- public MongoDBException(ProblemType problem) {
- super(problem);
- }
- public MongoDBException(Throwable causedBy,ProblemType problem) {
- super(causedBy,problem);
- }
- }