Skip to content

Package: CannotCreateTmpDirDriverException

CannotCreateTmpDirDriverException

nameinstructionbranchcomplexitylinemethod
CannotCreateTmpDirDriverException(String, String)
M: 11 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2018, 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.job.engine.jbatch.driver.exception;
13:
14: public class CannotCreateTmpDirDriverException extends JbatchDriverException {
15:
16: public CannotCreateTmpDirDriverException(String jobName, String path) {
17: super(JbatchDriverErrorCodes.CANNOT_CREATE_TMP_DIRECTORY, jobName, path);
18: }
19: }