com.nmote.iim4j.serialize.SerializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nmote-iim4j Show documentation
Show all versions of nmote-iim4j Show documentation
IIM4J allows Java programmers to read, write and process IPTC IIM version 4 files.
The newest version!
/*
* Copyright (c) Nmote Ltd. 2004-2015. All rights reserved.
* See LICENSE doc in a root of project folder for additional information.
*/
package com.nmote.iim4j.serialize;
import java.io.IOException;
import com.nmote.iim4j.About;
/**
* SerializationException is throws if value can't be serialized or deserialized
* from binary format.
*/
public class SerializationException extends IOException {
private static final long serialVersionUID = About.SERIAL_VERSION_UID;
public SerializationException() {
}
public SerializationException(String message) {
super(message);
}
}