]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/serialization/SerializationException.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / serialization / SerializationException.java
1 /*******************************************************************************\r
2  *  Copyright (c) 2010 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.databoard.serialization;
13 \r
14 import java.io.IOException;\r
15
16 /**
17  * Serialization exception is an error situation that occurs when
18  * there is malformed serialization data.
19  *
20  * @author Toni Kalajainen <toni.kalajainen@vtt.fi>
21  */
22 public class SerializationException extends IOException {
23
24         private static final long serialVersionUID = 1L;
25         
26         public SerializationException() {
27                 // TODO Auto-generated constructor stub
28         }
29
30         public SerializationException(String message) {
31                 super(message);
32                 // TODO Auto-generated constructor stub
33         }
34
35         public SerializationException(Throwable cause) {
36                 super(cause);
37                 // TODO Auto-generated constructor stub
38         }
39
40         public SerializationException(String message, Throwable cause) {
41                 super(message, cause);
42                 // TODO Auto-generated constructor stub
43         }
44
45 }
46