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

com.wix.mediaplatform.v7.exception.MediaPlatformException Maven / Gradle / Ivy

There is a newer version: 8.4.0
Show newest version
package com.wix.mediaplatform.v7.exception;


public class MediaPlatformException extends Exception {

    private int code;

    public MediaPlatformException() { super(); }

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

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

    public int getCode() {
        return code;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy