1 /*******************************************************************************
2 * Copyright (c) 2010 Association for Decentralized Information Management in
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
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.databoard.serialization;
14 import java.io.IOException;
17 * Serialization exception is an error situation that occurs when
18 * there is malformed serialization data.
20 * @author Toni Kalajainen <toni.kalajainen@vtt.fi>
22 public class SerializationException extends IOException {
24 private static final long serialVersionUID = 1L;
26 public SerializationException() {
27 // TODO Auto-generated constructor stub
30 public SerializationException(String message) {
32 // TODO Auto-generated constructor stub
35 public SerializationException(Throwable cause) {
37 // TODO Auto-generated constructor stub
40 public SerializationException(String message, Throwable cause) {
41 super(message, cause);
42 // TODO Auto-generated constructor stub