001/* 002 * =========================================================================================== 003 * = COPYRIGHT 004 * PAX Computer Technology (Shenzhen) Co., Ltd. PROPRIETARY INFORMATION 005 * This software is supplied under the terms of a license agreement or nondisclosure 006 * agreement with PAX Computer Technology (Shenzhen) Co., Ltd. and may not be copied or 007 * disclosed except in accordance with the terms in that agreement. 008 * Copyright (C) 2017-2023 PAX Computer Technology (Shenzhen) Co., Ltd. All rights reserved. 009 * Description: // Detail description about the function of this module, 010 * // interfaces with the other modules, and dependencies. 011 * Revision History: 012 * Date Author Action 013 * 2017/04/01 PAX Create/Add/Modify/Delete 014 * =========================================================================================== 015 */ 016package com.pax.dal.exceptions; 017 018/** 019 * <div class="zh">P2PE异常类。</div> 020 * <div class="en">P2PE exception.</div> 021 */ 022public class P2PEException extends AGeneralException { 023 024 private static final long serialVersionUID = 1L; 025 private static final String MODULE = "P2PE"; 026 027 public P2PEException(EP2PEException exception) { 028 super(MODULE, exception.getErrCodeFromBasement(), exception.getErrMsg()); 029 } 030 031 public P2PEException(int code, String errMsg) { 032 super(MODULE, code, errMsg); 033 } 034}