Interface Warning


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

Flyway Teams only

  • Method Summary

    Modifier and Type
    Method
    Description
    int
     
     
     
    boolean
    Checks whether this warning has already been handled.
    void
    setHandled(boolean handled)
    Sets whether this warning has already been handled.
  • 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)
      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.