/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.commons.vfs2;

import java.io.IOException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.apache.commons.vfs2.util.Messages;

Thrown for file system errors.
/** * Thrown for file system errors. */
public class FileSystemException extends IOException {
serialVersionUID format is YYYYMMDD for the date of the last binary change.
/** * serialVersionUID format is YYYYMMDD for the date of the last binary change. */
private static final long serialVersionUID = 20101208L;
URL pattern
/** URL pattern */
private static final Pattern URL_PATTERN = Pattern.compile("[a-z]+://.*");
Password pattern
/** Password pattern */
private static final Pattern PASSWORD_PATTERN = Pattern.compile(":(?:[^/]+)@");
Array of complementary info (context).
/** * Array of complementary info (context). */
private final String[] info;
Throws a FileSystemException when the given object is null.
Params:
  • obj – the object reference to check for null.
  • code – message used when FileSystemException is thrown
Type parameters:
  • <T> – the type of the reference
Throws:
Returns:obj if not null
Since:2.3
/** * Throws a FileSystemException when the given object is null. * * @param obj * the object reference to check for null. * @param code * message used when {@code * FileSystemException} is thrown * @param <T> * the type of the reference * @return {@code obj} if not {@code null} * @throws FileSystemException * if {@code obj} is {@code null} * @since 2.3 */
public static <T> T requireNonNull(final T obj, final String code) throws FileSystemException { if (obj == null) { throw new FileSystemException(code); } return obj; }
Throws a FileSystemException when the given object is null.
Params:
  • obj – the object reference to check for null.
  • code – message used when FileSystemException is thrown
  • info – one context information.
Type parameters:
  • <T> – the type of the reference
Throws:
Returns:obj if not null
Since:2.3
/** * Throws a FileSystemException when the given object is null. * * @param obj * the object reference to check for null. * @param code * message used when {@code * FileSystemException} is thrown * @param info * one context information. * @param <T> * the type of the reference * @return {@code obj} if not {@code null} * @throws FileSystemException * if {@code obj} is {@code null} * @since 2.3 */
public static <T> T requireNonNull(final T obj, final String code, final Object... info) throws FileSystemException { if (obj == null) { throw new FileSystemException(code, info); } return obj; }
Constructs exception with the specified detail message.
Params:
  • code – the error code of the message.
/** * Constructs exception with the specified detail message. * * @param code the error code of the message. */
public FileSystemException(final String code) { this(code, null, (Object[]) null); }
Constructs exception with the specified detail message.
Params:
  • code – the error code of the message.
  • info0 – one context information.
/** * Constructs exception with the specified detail message. * * @param code the error code of the message. * @param info0 one context information. */
public FileSystemException(final String code, final Object info0) { this(code, null, new Object[] { info0 }); }
Constructs exception with the specified detail message.
Params:
  • code – the error code of the message.
  • info0 – one context information.
  • throwable – the cause.
/** * Constructs exception with the specified detail message. * * @param code the error code of the message. * @param info0 one context information. * @param throwable the cause. */
public FileSystemException(final String code, final Object info0, final Throwable throwable) { this(code, throwable, new Object[] { info0 }); }
Constructs exception with the specified detail message.
Params:
  • code – the error code of the message.
  • info – array of complementary info (context).
/** * Constructs exception with the specified detail message. * * @param code the error code of the message. * @param info array of complementary info (context). */
public FileSystemException(final String code, final Object... info) { this(code, null, info); }
Constructs exception with the specified detail message.
Params:
  • code – the error code of the message.
  • throwable – the original cause
/** * Constructs exception with the specified detail message. * * @param code the error code of the message. * @param throwable the original cause */
public FileSystemException(final String code, final Throwable throwable) { this(code, throwable, (Object[]) null); }
Constructs exception with the specified detail message.
Params:
  • code – the error code of the message.
  • info – array of complementary info (context).
  • throwable – the cause.
Deprecated:Use instead FileSystemException(String, Throwable, Object[]). Will be removed in 3.0.
/** * Constructs exception with the specified detail message. * * @param code the error code of the message. * @param info array of complementary info (context). * @param throwable the cause. * @deprecated Use instead {@link #FileSystemException(String, Throwable, Object[])}. Will be removed in 3.0. */
@Deprecated public FileSystemException(final String code, final Object[] info, final Throwable throwable) { this(code, throwable, info); }
Constructs exception with the specified detail message.
Params:
  • code – the error code of the message.
  • info – array of complementary info (context).
  • throwable – the cause.
/** * Constructs exception with the specified detail message. * * @param code the error code of the message. * @param info array of complementary info (context). * @param throwable the cause. */
public FileSystemException(final String code, final Throwable throwable, final Object... info) { super(code, throwable); if (info == null) { this.info = new String[0]; } else { this.info = new String[info.length]; for (int i = 0; i < info.length; i++) { String value = String.valueOf(info[i]); // mask passwords (VFS-169) final Matcher urlMatcher = URL_PATTERN.matcher(value); if (urlMatcher.find()) { final Matcher pwdMatcher = PASSWORD_PATTERN.matcher(value); value = pwdMatcher.replaceFirst(":***@"); } this.info[i] = value; } } }
Constructs wrapper exception.
Params:
  • throwable – the root cause to wrap.
/** * Constructs wrapper exception. * * @param throwable the root cause to wrap. */
public FileSystemException(final Throwable throwable) { this(throwable.getMessage(), throwable, (Object[]) null); }
Retrieves message from bundle.
Returns:The exception message.
/** * Retrieves message from bundle. * * @return The exception message. */
@Override public String getMessage() { return Messages.getString(super.getMessage(), (Object[]) getInfo()); }
Retrieves error code of the exception. Could be used as key for internationalization.
Returns:the code.
/** * Retrieves error code of the exception. Could be used as key for internationalization. * * @return the code. */
public String getCode() { return super.getMessage(); }
Retrieves array of complementary info (context). Could be used as parameter for internationalization.
Returns:the context info.
/** * Retrieves array of complementary info (context). Could be used as parameter for internationalization. * * @return the context info. */
public String[] getInfo() { return info; } }