Class LangChainException

All Implemented Interfaces:
Serializable

public class LangChainException extends RuntimeException
LangChainException
Author:
HamaWhite
See Also:
  • Constructor Details

    • LangChainException

      public LangChainException(String message)
      Creates a new Exception with the given message and null as the cause.
      Parameters:
      message - The exception message
    • LangChainException

      public LangChainException(String message, Object... args)
      Creates a new LangChainException with the given formatted message and arguments.
      Parameters:
      message - The exception message format string
      args - Arguments to format the message
    • LangChainException

      public LangChainException(Throwable cause)
      Creates a new exception with a null message and the given cause.
      Parameters:
      cause - The exception that caused this exception
    • LangChainException

      public LangChainException(String message, Throwable cause)
      Creates a new exception with the given message and cause.
      Parameters:
      message - The exception message
      cause - The exception that caused this exception