org.apache.sling.settings.impl.SlingOptionsWriteException Maven / Gradle / Ivy
The newest version!
/*************************************************************************
* ADOBE CONFIDENTIAL
* ___________________
*
* Copyright 2016 Adobe
* All Rights Reserved.
*
* NOTICE: All information contained herein is, and remains
* the property of Adobe and its suppliers, if any. The intellectual
* and technical concepts contained herein are proprietary to Adobe
* and its suppliers and are protected by all applicable intellectual
* property laws, including trade secret and copyright laws.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe.
**************************************************************************/
package org.apache.sling.settings.impl;
import java.io.IOException;
public class SlingOptionsWriteException extends RuntimeException {
private final IOException inputOutputException;
public SlingOptionsWriteException(final IOException inputOutputException) {
this.inputOutputException = inputOutputException;
}
public SlingOptionsWriteException(final String message, final IOException inputOutputException) {
super(message, inputOutputException);
this.inputOutputException = inputOutputException;
}
public IOException getInputOutputException() {
return inputOutputException;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy