All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mytaxi.apis.phrase.exception.PhraseAppApiException Maven / Gradle / Ivy

Go to download

This projects contains of services to handle the translations from [PhraseApp API v2](http://docs.phraseapp.com/api/v2/). It's supposed to expose Phrase translations as POJO or as File within the java world.

There is a newer version: 1.0.6
Show newest version
package com.mytaxi.apis.phrase.exception;

/**
 * Created by m.winkelmann on 29.10.15.
 */
public class PhraseAppApiException extends RuntimeException
{
    static final long serialVersionUID = -7034807190745766939L;


    public PhraseAppApiException(String message)
    {
        super(message);
    }


    public PhraseAppApiException(String message, Throwable throwable)
    {
        super(message, throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy