export class UnrecognizedGoogleEntry extends Error {
    constructor(public entry: any, public originalError?: any) {
        super();
        this.message = 'The entry from the response from Google is not a recognized entry. The original entry is attached in the "entry" attribute of this error. In case of exception there is an attribute "originalError".';
    }