PGBuildException.java 795 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.cq.mobile.phonegap.impl;

import com.adobe.cq.mobile.phonegap.impl.PGException;

public class PGBuildException
extends PGException {
    private Integer errorCode = null;
    private String errorDetails = null;

    public PGBuildException(String message, Throwable cause) {
        super(message, cause);
    }

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

    public PGBuildException(String message, Integer errorCode, String errorDetails) {
        super(message);
        this.errorCode = errorCode;
        this.errorDetails = errorDetails;
    }

    public Integer getErrorCode() {
        return this.errorCode;
    }

    public String getErrorDetails() {
        return this.errorDetails;
    }
}