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

org.dashbuilder.dataset.backend.exception.GenericPortableException Maven / Gradle / Ivy

There is a newer version: 7.74.1.Final
Show newest version
package org.dashbuilder.dataset.backend.exception;

import java.io.Serializable;

/**
 * 

Root of all portable Exceptions resulting from server-side errors that need to be sent to the client.

* @since 0.3.0 */ public class GenericPortableException extends RuntimeException implements Serializable { public GenericPortableException() { } public GenericPortableException( final String message ) { super( message ); } public GenericPortableException( final String message, Exception e ) { super( message, e ); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy