gICS_2.8.6
MandatoryFieldsException.java
1 package org.emau.icmvc.ganimed.ttp.cm2.exceptions;
2 
4 
5 /*
6  * ###license-information-start###
7  * gICS - a Generic Informed Consent Service
8  * __
9  * Copyright (C) 2014 - 2018 The MOSAIC Project - Institut fuer Community
10  * Medicine of the University Medicine Greifswald -
11  * mosaic-projekt@uni-greifswald.de
12  *
13  * concept and implementation
14  * l.geidel
15  * web client
16  * a.blumentritt, m.bialke
17  *
18  * Selected functionalities of gICS were developed as part of the MAGIC Project (funded by the DFG HO 1937/5-1).
19  *
20  * please cite our publications
21  * http://dx.doi.org/10.3414/ME14-01-0133
22  * http://dx.doi.org/10.1186/s12967-015-0545-6
23  * http://dx.doi.org/10.3205/17gmds146
24  * __
25  * This program is free software: you can redistribute it and/or modify
26  * it under the terms of the GNU Affero General Public License as published by
27  * the Free Software Foundation, either version 3 of the License, or
28  * (at your option) any later version.
29  *
30  * This program is distributed in the hope that it will be useful,
31  * but WITHOUT ANY WARRANTY; without even the implied warranty of
32  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33  * GNU General Public License for more details.
34  *
35  * You should have received a copy of the GNU Affero General Public License
36  * along with this program. If not, see <http://www.gnu.org/licenses/>.
37  * ###license-information-end###
38  */
39 
40 
41 
52 public class MandatoryFieldsException extends Exception {
53 
54  private static final long serialVersionUID = -8692673777407274802L;
55 
56  public MandatoryFieldsException() {
57  super();
58  }
59 
60  public MandatoryFieldsException(String message, Throwable cause) {
61  super(message, cause);
62  }
63 
64  public MandatoryFieldsException(String message) {
65  super(message);
66  }
67 
68  public MandatoryFieldsException(Throwable cause) {
69  super(cause);
70  }
71 }
should be thrown whenever there&#39;s an error in the mandatory-fields-logic: all mandatory fields must ...
wie wurde ein modul (und damit die enthaltenen policies) innerhalb eines consents konsentiert...