Skip to content

Commit

Permalink
Bug 568632 Implement feature grant acquire/release
Browse files Browse the repository at this point in the history
One more trouble code for for expected, but not found FLoating License
Access files.

Signed-off-by: eparovyshnaya <[email protected]>
  • Loading branch information
eparovyshnaya committed Nov 12, 2020
1 parent 1144a9f commit 685e2a3
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*******************************************************************************
* Copyright (c) 2020 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0/.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* ArSysOp - initial API and implementation
*******************************************************************************/
package org.eclipse.passage.lic.internal.base.diagnostic.code;

import org.eclipse.passage.lic.internal.api.diagnostic.TroubleCode;
import org.eclipse.passage.lic.internal.base.i18n.DiagnosticCodeMessages;

public final class AbsentLicenseAttendantFile extends TroubleCode {

public AbsentLicenseAttendantFile() {
super(407, DiagnosticCodeMessages.getString("AbsentLicenseAttendantFile.license_expired")); //$NON-NLS-1$
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
* permissions.</li>
* <li>406 - invalid content of attendant license package file (floating license
* access file, etc)</li>
* <li>407 - absence of an expected attendant license package file (floating
* license access file, etc)</li>
* </ul>
* </li>
* </ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ SeveralFrameworks.explanation=Passage finds %s Framework implementations, which
ServiceFailedOnMorsel.explanation=Service failed to evaluate a morsel
ServiceFailedOnInfrastructureDenial.explanation=Service failed severely due to an invoked service denial.
InvalidLicenseAttendantFile.license_expired=Invalid content of a license attendant file
AbsentLicenseAttendantFile.license_expired=Expected license attendant file is not found

0 comments on commit 685e2a3

Please sign in to comment.