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

com.github.sheigutn.pushbullet.exception.PushbulletApiError Maven / Gradle / Ivy

The newest version!
package com.github.sheigutn.pushbullet.exception;

import lombok.Data;

@Data
public class PushbulletApiError {

    /**
     * The type of this error
     */
    private final String type;

    /**
     * The message of this error
     */
    private final String message;

    /**
     * :3
     */
    private final String cat;

    public String toString() {
        return message;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy