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-2024 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* 2024/09/24 PAX Create/Add/Modify/Delete 014* =========================================================================================== 015*/ 016 017package com.pax.dal.exceptions; 018 019public class WhiteListControlDevException extends AGeneralException{ 020 021 private static final long serialVersionUID = 1L; 022 private static final String MODULE = "WLWhiteListControl"; 023 024 public WhiteListControlDevException(EWhiteListControlDevException exception) { 025 super(MODULE, exception.getErrCodeFromBasement(), exception.getErrMsg()); 026 } 027 028 public WhiteListControlDevException(int code, String errMsg) { 029 super(MODULE, code, errMsg); 030 } 031}