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

com.uwetrottmann.tmdb2.exceptions.TmdbException Maven / Gradle / Ivy

The newest version!
package com.uwetrottmann.tmdb2.exceptions;

import java.io.IOException;

public class TmdbException extends IOException {
    private int code;

    public int getCode() {
        return code;
    }

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

    public TmdbException(int code, String message) {
        super(message);
        this.code = code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy