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

commonMain.com.caesarealabs.rpc4k.runtime.api.InvalidRpcRequestException.kt Maven / Gradle / Ivy

The newest version!
package com.caesarealabs.rpc4k.runtime.api

import com.caesarealabs.rpc4k.runtime.api.serverRequirement

/**
 * SECURITY NOTE - the message will be sent to clients. Make sure to not leak sensitive info.
 * May be thrown by an RPC server handler to signal an invalid request.
 * @see [serverRequirement]
 */
public class InvalidRpcRequestException(override val message: String, cause: Throwable? = null) : RuntimeException(message, cause)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy