Class InvalidStructureVersionException

  • All Implemented Interfaces:
    java.io.Serializable

    public class InvalidStructureVersionException
    extends InvalidStructureFileException
    Exception thrown when a structure file is out of dated.
    Since:
    7.0.0
    Version:
    $Revision: 15055 $ $Date: 2012-11-29 18:48:37 -0200 (Thu, 29 Nov 2012) $
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      InvalidStructureVersionException​(java.lang.String currentVersion, java.lang.String expectedVersion)
      Constructs a new exception with the specified detail message and cause.
      InvalidStructureVersionException​(java.lang.String currentVersion, java.lang.String expectedVersion, java.lang.Throwable cause)
      Constructs a new exception with the specified detail message and cause.
    • Constructor Detail

      • InvalidStructureVersionException

        public InvalidStructureVersionException​(java.lang.String currentVersion,
                                                java.lang.String expectedVersion)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        currentVersion - the current version.
        expectedVersion - the expected version.
        Since:
        7.0.0
      • InvalidStructureVersionException

        public InvalidStructureVersionException​(java.lang.String currentVersion,
                                                java.lang.String expectedVersion,
                                                java.lang.Throwable cause)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        currentVersion - the current version.
        expectedVersion - the expected version.
        cause - the cause.
        Since:
        7.0.0
    • Method Detail

      • getStructureVersion

        public java.lang.String getStructureVersion()
        Returns the current structure invalid version.
        Returns:
        the current structure invalid version.
        Since:
        7.0.0
      • getExpectedVersion

        public java.lang.String getExpectedVersion()
        Returns the expected version.
        Returns:
        the expected version.
        Since:
        7.0.0