All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.focess.util.serialize.NotFocessSerializableException Maven / Gradle / Ivy

There is a newer version: 1.1.24
Show newest version
package top.focess.util.serialize;

/**
 * Thrown to indicate that an object is not serializable.
 */
public class NotFocessSerializableException extends RuntimeException {

    /**
     * Constructs a NotFocessSerializableException
     *
     * @param cls the class that is not serializable
     */
    public NotFocessSerializableException(final String cls) {
        super("The class " + cls + " is not FocessSerializable");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy