Class WrongScaleException

  • All Implemented Interfaces:
    java.io.Serializable

    public class WrongScaleException
    extends org.datanucleus.exceptions.DatastoreValidationException
    A WrongScaleException is thrown if a column is detected to have the wrong scale in the database during schema validation.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      WrongScaleException​(java.lang.String columnName, int expectedScale, int actualScale)
      Constructs a wrong scale exception.
      WrongScaleException​(java.lang.String columnName, int expectedScale, int actualScale, java.lang.String fieldName)
      Constructs a wrong scale exception.
    • Method Summary

      • Methods inherited from class org.datanucleus.exceptions.NucleusException

        getCause, getFailedObject, getNestedExceptions, isFatal, printStackTrace, printStackTrace, printStackTrace, setFatal, setNestedException
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • WrongScaleException

        public WrongScaleException​(java.lang.String columnName,
                                   int expectedScale,
                                   int actualScale)
        Constructs a wrong scale exception.
        Parameters:
        columnName - Name of the column having the wrong scale.
        expectedScale - The expected scale of the column.
        actualScale - The actual scale of the column.
      • WrongScaleException

        public WrongScaleException​(java.lang.String columnName,
                                   int expectedScale,
                                   int actualScale,
                                   java.lang.String fieldName)
        Constructs a wrong scale exception.
        Parameters:
        columnName - Name of the column having the wrong scale.
        expectedScale - The expected scale of the column.
        actualScale - The actual scale of the column.
        fieldName - The field name.