]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.model/src/org/simantics/browsing/ui/model/InvalidContribution.java
b18749aac6c1c78dd90a5567da7be4d717b3fd28
[simantics/platform.git] / bundles / org.simantics.browsing.ui.model / src / org / simantics / browsing / ui / model / InvalidContribution.java
1 /*******************************************************************************\r
2  * Copyright (c) 2010, 2011 Association for Decentralized Information Management in\r
3  * Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.browsing.ui.model;\r
13 \r
14 /**\r
15  * Exception that is thrown when the construction of \r
16  * a contribution fails because of an invalid input data.\r
17  */\r
18 public class InvalidContribution extends Exception {\r
19 \r
20     private static final long serialVersionUID = -927783931936452753L;\r
21 \r
22     public InvalidContribution() {\r
23         super();\r
24     }\r
25 \r
26     public InvalidContribution(String message, Throwable cause) {\r
27         super(message, cause);\r
28     }\r
29 \r
30     public InvalidContribution(String message) {\r
31         super(message);\r
32     }\r
33 \r
34     public InvalidContribution(Throwable cause) {\r
35         super(cause);\r
36     }\r
37 }\r