com.zakgof.serialize.ZeSerializerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools Show documentation
Show all versions of tools Show documentation
Utility classes used internally by various zakgof projects.
package com.zakgof.serialize;
public class ZeSerializerException extends RuntimeException {
public ZeSerializerException(String message) {
super(message);
}
public ZeSerializerException(Throwable e) {
super(e);
}
private static final long serialVersionUID = 340880267490580329L;
}