com.googlecode.objectify.TranslateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of objectify Show documentation
Show all versions of objectify Show documentation
The simplest convenient interface to the Google App Engine datastore
package com.googlecode.objectify;
/**
* Thrown when something went wrong during the entity translation process; for example, the data in the
* datastore might be in a format incompatible with the intended pojo field.
*/
public class TranslateException extends RuntimeException
{
private static final long serialVersionUID = 1L;
public TranslateException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy