Serialized Form


Package liquibase.change

Class liquibase.change.ColumnConfig.ValueNumeric extends Number implements Serializable

serialVersionUID: 1381154777956917462L

Serialized Fields

delegate

Number delegate

value

String value

Package liquibase.change.core

Class liquibase.change.core.StopChange.StopChangeException extends RuntimeException implements Serializable


Package liquibase.command

Class liquibase.command.CommandExecutionException extends Exception implements Serializable


Package liquibase.exception

Class liquibase.exception.ChangeLogParseException extends LiquibaseParseException implements Serializable

Class liquibase.exception.ChangeNotFoundException extends LiquibaseException implements Serializable

Class liquibase.exception.CommandLineParsingException extends Exception implements Serializable

serialVersionUID: 1L

Class liquibase.exception.CustomChangeException extends Exception implements Serializable

Class liquibase.exception.CustomPreconditionErrorException extends Exception implements Serializable

serialVersionUID: 1L

Class liquibase.exception.CustomPreconditionFailedException extends Exception implements Serializable

serialVersionUID: 1L

Class liquibase.exception.DatabaseException extends LiquibaseException implements Serializable

serialVersionUID: 1L

Class liquibase.exception.DatabaseHistoryException extends LiquibaseException implements Serializable

serialVersionUID: 1L

Class liquibase.exception.DateParseException extends ParseException implements Serializable

Class liquibase.exception.DuplicateChangeSetException extends LiquibaseException implements Serializable

serialVersionUID: 1L

Class liquibase.exception.DuplicateStatementIdentifierException extends LiquibaseException implements Serializable

serialVersionUID: 1L

Class liquibase.exception.InvalidChangeDefinitionException extends LiquibaseException implements Serializable

Class liquibase.exception.LiquibaseException extends Exception implements Serializable

serialVersionUID: 1L

Class liquibase.exception.LiquibaseParseException extends LiquibaseException implements Serializable

Class liquibase.exception.LockException extends LiquibaseException implements Serializable

Class liquibase.exception.MigrationFailedException extends LiquibaseException implements Serializable

serialVersionUID: 1L

Serialized Fields

failedChangeSet

ChangeSet failedChangeSet

Class liquibase.exception.PreconditionErrorException extends Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

erroredPreconditions

List<E> erroredPreconditions

Class liquibase.exception.PreconditionFailedException extends Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

failedPreconditions

List<E> failedPreconditions

Class liquibase.exception.RollbackFailedException extends LiquibaseException implements Serializable

serialVersionUID: 1L

Class liquibase.exception.RollbackImpossibleException extends LiquibaseException implements Serializable

serialVersionUID: 1L

Class liquibase.exception.ServiceNotFoundException extends RuntimeException implements Serializable

Class liquibase.exception.SetupException extends LiquibaseException implements Serializable

serialVersionUID: 1L

Class liquibase.exception.StatementNotSupportedOnDatabaseException extends DatabaseException implements Serializable

Serialized Fields

reason

String reason

Class liquibase.exception.UnexpectedLiquibaseException extends RuntimeException implements Serializable

Class liquibase.exception.UnknownChangelogFormatException extends LiquibaseException implements Serializable

Class liquibase.exception.UnknownFormatException extends LiquibaseException implements Serializable

Class liquibase.exception.ValidationFailedException extends MigrationFailedException implements Serializable

Serialized Fields

invalidMD5Sums

List<E> invalidMD5Sums

failedPreconditions

List<E> failedPreconditions

errorPreconditions

List<E> errorPreconditions

duplicateChangeSets

Set<E> duplicateChangeSets

setupExceptions

List<E> setupExceptions

changeValidationExceptions

List<E> changeValidationExceptions

validationErrors

ValidationErrors validationErrors

database

Database database

Package liquibase.integration.servlet

Class liquibase.integration.servlet.LiquibaseStatusServlet extends javax.servlet.http.HttpServlet implements Serializable


Package liquibase.parser.core

Class liquibase.parser.core.ParsedNodeException extends Exception implements Serializable


Package liquibase.sdk.exception

Class liquibase.sdk.exception.UnexpectedLiquibaseSdkException extends RuntimeException implements Serializable


Package liquibase.snapshot

Class liquibase.snapshot.InvalidExampleException extends LiquibaseException implements Serializable


Package liquibase.util.grammar

Class liquibase.util.grammar.ParseException extends Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

String eol
The end of line string for this machine.

Class liquibase.util.grammar.Token extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

kind

int kind
An integer that describes the kind of this token. This numbering system is determined by JavaCCParser, and a table of these numbers is stored in the file ...Constants.java.


beginLine

int beginLine
The line number of the first character of this Token.


beginColumn

int beginColumn
The column number of the first character of this Token.


endLine

int endLine
The line number of the last character of this Token.


endColumn

int endColumn
The column number of the last character of this Token.


image

String image
The string image of the token.


next

Token next
A reference to the next regular (non-special) token from the input stream. If this is the last token from the input stream, or if the token manager has not read tokens beyond this one, this field is set to null. This is true only if this token is also a regular token. Otherwise, see below for a description of the contents of this field.


specialToken

Token specialToken
This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token. If there are no such special tokens, this field is set to null. When there are more than one such special token, this field refers to the last of these special tokens, which in turn refers to the next previous special token through its specialToken field, and so on until the first special token (whose specialToken field is null). The next fields of special tokens refer to other special tokens that immediately follow it (without an intervening regular token). If there is no such token, this field is null.

Class liquibase.util.grammar.TokenMgrError extends Error implements Serializable

serialVersionUID: 1L

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.



Copyright © 2016 Liquibase.org. All rights reserved.