
com.dslplatform.json.SerializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dsl-json Show documentation
Show all versions of dsl-json Show documentation
DSL Platform compatible Java JSON library (https://dsl-platform.com)
The newest version!
package com.dslplatform.json;
public class SerializationException extends RuntimeException {
public SerializationException(@Nullable String reason) {
super(reason);
}
public SerializationException(@Nullable Throwable cause) {
super(cause);
}
public SerializationException(@Nullable String reason, @Nullable Throwable cause) {
super(reason, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy