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

dk.alexandra.fresco.framework.MaliciousException Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version

package dk.alexandra.fresco.framework;

/**
 * Runtime exception to be thrown if and only if data received from another party does not follow
 * the protocol specification. By definition this is considered a malicious act. Data received is
 * not limited to raw data, but also any kind of local processing of raw data.
 */
@SuppressWarnings("serial")
public class MaliciousException extends RuntimeException {

  public MaliciousException(String message) {
    super(message);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy