You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
902 B
54 lines
902 B
/*
|
|
* Copyright (c) 2007, 2009, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.nio.file;
|
|
|
|
/**
|
|
* Unchecked exception thrown when an attempt is made to invoke a method on an
|
|
* object created by one file system provider with a parameter created by a
|
|
* different file system provider.
|
|
*/
|
|
public class ProviderMismatchException
|
|
extends java.lang.IllegalArgumentException
|
|
{
|
|
static final long serialVersionUID = 4990847485741612530L;
|
|
|
|
/**
|
|
* Constructs an instance of this class.
|
|
*/
|
|
public ProviderMismatchException() {
|
|
}
|
|
|
|
/**
|
|
* Constructs an instance of this class.
|
|
*
|
|
* @param msg
|
|
* the detail message
|
|
*/
|
|
public ProviderMismatchException(String msg) {
|
|
super(msg);
|
|
}
|
|
}
|