Interface Warning


public interface Warning
A warning that occurred while executing a statement.

Flyway Teams only

  • Method Details

    • getCode

      int getCode()
      Returns:
      The warning code.
    • getState

      String getState()
      Returns:
      The warning state.
    • getMessage

      String getMessage()
      Returns:
      The warning message.
    • isHandled

      boolean isHandled()
      Checks whether this warning has already been handled.
      Returns:
      true true if this warning has already be handled or false if it should flow via the default warning handler.
    • setHandled

      void setHandled(boolean handled, Configuration config)
      Sets whether this warning has already been handled.
      Parameters:
      handled - true if this warning has already be handled or false if it should flow via the default warning handler.