Package com.applitools.eyes.exceptions
Class CoordinatesTypeConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.applitools.eyes.EyesException
com.applitools.eyes.exceptions.CoordinatesTypeConversionException
- All Implemented Interfaces:
Serializable
public class CoordinatesTypeConversionException
extends com.applitools.eyes.EyesException
Encapsulates an error converting between two coordinate types.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCoordinatesTypeConversionException(com.applitools.eyes.CoordinatesType from, com.applitools.eyes.CoordinatesType to) Represents an error trying to convert between two coordinate types.CoordinatesTypeConversionException(String message) CoordinatesTypeConversionException(String message, Throwable e) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CoordinatesTypeConversionException
-
CoordinatesTypeConversionException
-
CoordinatesTypeConversionException
public CoordinatesTypeConversionException(com.applitools.eyes.CoordinatesType from, com.applitools.eyes.CoordinatesType to) Represents an error trying to convert between two coordinate types.- Parameters:
from- The source coordinates type.to- The target coordinates type.
-