mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-07 18:25:23 +00:00
97181: Merged 5.0.N (5.0.2) to HEAD-BUG-FIX (5.1/Cloud) 97111: Merged V4.2-BUG-FIX (4.2.5) to 5.0.N (5.0.2) 97019: Merged V4.2.0 (4.2.0.11) to V4.2-BUG-FIX (4.2.5) 92266: MNT-12936: Temporary GenericCertificateIntegrityException causes repo to go into readOnly - Retry transaction if got GenericCertificateIntegrityException 92373: MNT-12936: Temporary GenericCertificateIntegrityException causes repo to go into readOnly - Remove stale try{}catch{}, modify unit test. 92842: MNT-12936: Temporary GenericCertificateIntegrityException causes repo to go into readOnly - Use exception from repo for retrying 92899: MNT-12936: Temporary GenericCertificateIntegrityException causes repo to go into readOnly - Fix unit test failing: use new exception that was introduced in original fix git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@97196 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
39 lines
1.2 KiB
Java
Executable File
39 lines
1.2 KiB
Java
Executable File
/*
|
|
* Copyright (C) 2005-2015 Alfresco Software Limited.
|
|
*
|
|
* This file is part of Alfresco
|
|
*
|
|
* Alfresco is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Alfresco 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.alfresco.service.license;
|
|
|
|
/**
|
|
* An instance of this class is thrown if the integrity of a GenericCertificate has been detected to be compromised.
|
|
*/
|
|
public class LicenseIntegrityException extends Exception
|
|
{
|
|
|
|
private static final long serialVersionUID = 112424979852827947L;
|
|
|
|
public LicenseIntegrityException(String msg)
|
|
{
|
|
super(msg);
|
|
}
|
|
|
|
public LicenseIntegrityException(String msg, Throwable cause)
|
|
{
|
|
super(msg, cause);
|
|
}
|
|
}
|