]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/serialization/SerializationException.java
Streaming serialization of values, debugger for corrupted values
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / serialization / SerializationException.java
1 /*******************************************************************************
2  *  Copyright (c) 2010 Association for Decentralized Information Management in
3  *  Industry THTH ry.
4  *  All rights reserved. This program and the accompanying materials
5  *  are made available under the terms of the Eclipse Public License v1.0
6  *  which accompanies this distribution, and is available at
7  *  http://www.eclipse.org/legal/epl-v10.html
8  *
9  *  Contributors:
10  *      VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.databoard.serialization;
13
14 import java.io.IOException;
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