blob: 9be07e164fdc1c6548fa163a4a77f4115ce58310 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.internal.eis.cobol;
/**
* <b>Purpose</b>: This class creates all exceptions for the copy book parser
*/
public class CopyBookParseException extends org.eclipse.persistence.exceptions.EclipseLinkException {
public static final int INVALID_COPYBOOK = 14000;
public static final int IO_EXCEPTION = 14001;
public CopyBookParseException() {
super("");
}
public CopyBookParseException(String message) {
super(message);
}
public CopyBookParseException(String message, Exception exception) {
super(message, exception);
}
/**
* this exception is thrown when a problem is encountered parsing a copybook
*/
public static CopyBookParseException invalidCopyBookException(String message) {
CopyBookParseException exception = new CopyBookParseException(message);
exception.setErrorCode(INVALID_COPYBOOK);
return exception;
}
/**
* this exception is thrown when an io exception occurs during copybook parsing
*/
public static CopyBookParseException ioException(java.io.IOException internalException) {
CopyBookParseException exception = new CopyBookParseException("An IOException occurred.");
exception.setErrorCode(IO_EXCEPTION);
exception.setInternalException(internalException);
return exception;
}
}