Java tutorial
/* * Copyright (C) 2011 Flamingo Project (https://github.com/OpenCloudEngine/flamingo2). * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.exem.flamingo.shared.core.exception; import org.apache.commons.lang.math.RandomUtils; import org.exem.flamingo.shared.util.DateUtils; /** * HTTP Body ? ? ? . * * @author Byoung Gon, Kim * @since 2.0 */ public class WholeBodyException extends RuntimeException { /** * Serialization UID */ private static final long serialVersionUID = 1; private String exceptionId = DateUtils.getCurrentDateTime() + "_" + RandomUtils.nextLong(); private String message = null; private int exitCode; private int code; private String recentLog; /** * ??. */ public WholeBodyException() { super(); } /** * ??. * * @param message */ public WholeBodyException(String message) { super(message); this.message = message; } /** * ??. * * @param message * @param cause ?? */ public WholeBodyException(String message, Throwable cause) { super(message, cause); this.message = message; } /** * ??. * * @param message * @param code ? * @param cause ?? */ public WholeBodyException(String message, int code, Throwable cause) { super(message, cause); this.code = code; this.message = message; } /** * ??. * * @param cause ?? */ public WholeBodyException(Throwable cause) { super(cause); } /** * ??. * * @param exitCode * @param recentLog */ public WholeBodyException(int exitCode, String recentLog) { this.exitCode = exitCode; this.message = String.valueOf(exitCode); this.recentLog = recentLog; } public int getExitCode() { return exitCode; } public String getRecentLog() { return recentLog; } /** * Root Cause . * * @return Root Cause */ public Throwable getRootCause() { return super.getCause(); } public void setMessage(String message) { this.message = message; } public int getCode() { return code; } public void setCode(int code) { this.code = code; } public void setExitCode(int exitCode) { this.exitCode = exitCode; } public String getExceptionId() { return exceptionId; } @Override public String getMessage() { return message; } public void setRecentLog(String recentLog) { this.recentLog = recentLog; } @Override public String toString() { return message; } }