Class RemoteFunctionException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AccessDeniedException, InvalidParameterException, MissingErpConfigException, MissingParameterException, NotImplementedException, ParameterNotFoundException, RemoteFunctionCommitFailedException, RemoteFunctionRollbackFailedException, WrongCustomizingException

public class RemoteFunctionException extends RequestExecutionException
Thrown when something goes wrong during the invocation of a remote function.
See Also:
  • Constructor Details

    • RemoteFunctionException

      @Deprecated public RemoteFunctionException()
      Deprecated.
      This module will be discontinued, along with its classes and methods.
      Default constructor without messages.
    • RemoteFunctionException

      @Deprecated public RemoteFunctionException(@Nullable String message)
      Deprecated.
      This module will be discontinued, along with its classes and methods.
      Constructor.
      Parameters:
      message - The exception message.
    • RemoteFunctionException

      @Deprecated public RemoteFunctionException(@Nullable Throwable cause)
      Deprecated.
      This module will be discontinued, along with its classes and methods.
      Constructor.
      Parameters:
      cause - The exception cause.
    • RemoteFunctionException

      @Deprecated public RemoteFunctionException(@Nullable String message, @Nullable Throwable cause)
      Deprecated.
      This module will be discontinued, along with its classes and methods.
      Constructor.
      Parameters:
      message - The exception message.
      cause - The exception cause.
    • RemoteFunctionException

      @Deprecated public RemoteFunctionException(@Nonnull RemoteFunctionMessage message)
      Deprecated.
      This module will be discontinued, along with its classes and methods.
      Constructor.
      Parameters:
      message - The remote function message.
    • RemoteFunctionException

      @Deprecated public RemoteFunctionException(@Nonnull Iterable<RemoteFunctionMessage> messages)
      Deprecated.
      This module will be discontinued, along with its classes and methods.
      Constructor.
      Parameters:
      messages - The remote function messages.
  • Method Details