-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 568632 Implement feature grant acquire/release
One more trouble code for for expected, but not found FLoating License Access files. Signed-off-by: eparovyshnaya <[email protected]>
- Loading branch information
1 parent
1144a9f
commit 685e2a3
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
...src/org/eclipse/passage/lic/internal/base/diagnostic/code/AbsentLicenseAttendantFile.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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$ | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters