Skip to content

Package: KapuaAccountErrorCodes

KapuaAccountErrorCodes

nameinstructionbranchcomplexitylinemethod
static {...}
M: 34 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 4 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2016, 2020 Eurotech and/or its affiliates and others
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License v1.0
6: * which accompanies this distribution, and is available at
7: * http://www.eclipse.org/legal/epl-v10.html
8: *
9: * Contributors:
10: * Eurotech - initial API and implementation
11: *******************************************************************************/
12: package org.eclipse.kapua.service.account.internal;
13:
14: import org.eclipse.kapua.KapuaErrorCode;
15:
16: /**
17: * Account error codes
18: *
19: * since 1.0
20: *
21: */
22: public enum KapuaAccountErrorCodes implements KapuaErrorCode {
23: /**
24: * Internal error
25: */
26: INTERNAL_ERROR,
27: /**
28: * Illegal argument
29: */
30: ILLEGAL_ARGUMENT,
31: /**
32: * Operation not allowed
33: */
34: OPERATION_NOT_ALLOWED;
35: }