@MessageBundle(projectCode="VFS")
public interface VFSMessages
| Modifier and Type | Field and Description |
|---|---|
static VFSMessages |
MESSAGES
The messages
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.IllegalArgumentException |
bufferDoesntHaveEnoughCapacity() |
java.lang.IllegalArgumentException |
bufferMustBeLargerThan(int minimumBufferLength) |
java.lang.IllegalArgumentException |
cannotDecode(java.lang.String path,
java.lang.String encoding,
java.lang.Exception e) |
java.lang.RuntimeException |
cantSetupTempFileProvider(java.lang.Throwable cause) |
java.io.IOException |
couldNotCreateDirectory(java.lang.String originalName,
int retries) |
java.io.IOException |
couldNotCreateDirectoryForRoot(java.io.File root,
java.lang.String prefix,
java.lang.String suffix,
int retries) |
java.io.IOException |
fileSystemAlreadyMountedAtMountPoint(VirtualFile mountPoint) |
java.lang.IllegalArgumentException |
invalidActionsString(java.lang.String actions) |
java.io.IOException |
invalidJarSignature(java.lang.String bytes,
java.lang.String expectedHeader) |
java.lang.IllegalArgumentException |
invalidWin32Path(java.lang.String path) |
java.io.IOException |
notAFile(java.lang.String path) |
java.lang.IllegalArgumentException |
nullArgument(java.lang.String name) |
java.lang.IllegalArgumentException |
nullOrEmpty(java.lang.String name) |
java.lang.IllegalStateException |
onRootPath() |
java.lang.IllegalArgumentException |
parentIsNotAncestor(VirtualFile parent) |
java.lang.IllegalStateException |
preconfiguredAttributesAreImmutable() |
java.lang.IllegalArgumentException |
problemCreatingNewDirectory(VirtualFile targetChild) |
java.io.IOException |
remoteHostAccessNotSupportedForUrls(java.lang.String protocol) |
java.io.IOException |
rootFileSystemAlreadyMounted() |
java.io.IOException |
streamIsClosed() |
java.io.IOException |
tempDirectoryClosed() |
java.io.IOException |
tempFileProviderClosed() |
static final VFSMessages MESSAGES
@Message(id=10,
value="Can\'t set up temp file provider")
java.lang.RuntimeException cantSetupTempFileProvider(@Cause
java.lang.Throwable cause)
@Message(id=11,
value="Temp directory closed")
java.io.IOException tempDirectoryClosed()
@Message(id=12,
value="Temp file provider closed")
java.io.IOException tempFileProviderClosed()
@Message(id=14,
value="Could not create directory for root \'%s\' (prefix \'%s\', suffix \'%s\') after %d attempts")
java.io.IOException couldNotCreateDirectoryForRoot(java.io.File root,
java.lang.String prefix,
java.lang.String suffix,
int retries)
@Message(id=15,
value="Could not create directory for original name \'%s\' after %d attempts")
java.io.IOException couldNotCreateDirectory(java.lang.String originalName,
int retries)
@Message(id=16,
value="Root filesystem already mounted")
java.io.IOException rootFileSystemAlreadyMounted()
@Message(id=17,
value="Filesystem already mounted at mount point \"%s\"")
java.io.IOException fileSystemAlreadyMountedAtMountPoint(VirtualFile mountPoint)
@Message(id=18,
value="Stream is closed")
java.io.IOException streamIsClosed()
@Message(id=19,
value="Not a file: \'%s\'")
java.io.IOException notAFile(java.lang.String path)
@Message(id=20,
value="Remote host access not supported for URLs of type \'%s\'")
java.io.IOException remoteHostAccessNotSupportedForUrls(java.lang.String protocol)
@Message(id=21,
value="%s must not be null")
java.lang.IllegalArgumentException nullArgument(java.lang.String name)
@Message(id=22,
value="Null or empty %s")
java.lang.IllegalArgumentException nullOrEmpty(java.lang.String name)
@Message(id=23,
value="Given parent (%s) is not an ancestor of this virtual file")
java.lang.IllegalArgumentException parentIsNotAncestor(VirtualFile parent)
@Message(id=24,
value="Problems creating new directory: %s")
java.lang.IllegalArgumentException problemCreatingNewDirectory(VirtualFile targetChild)
@Message(id=25,
value="Invalid Win32 path: %s")
java.lang.IllegalArgumentException invalidWin32Path(java.lang.String path)
@Message(id=26,
value="Cannot decode: %s [%s]")
java.lang.IllegalArgumentException cannotDecode(java.lang.String path,
java.lang.String encoding,
@Cause
java.lang.Exception e)
@Message(id=27,
value="Invalid jar signature %s should be %s")
java.io.IOException invalidJarSignature(java.lang.String bytes,
java.lang.String expectedHeader)
@Message(id=28,
value="Invalid actions string: %s")
java.lang.IllegalArgumentException invalidActionsString(java.lang.String actions)
@Message(id=29,
value="The totalBufferLength must be larger than: %s")
java.lang.IllegalArgumentException bufferMustBeLargerThan(int minimumBufferLength)
@Message(id=30,
value="Buffer does not have enough capacity")
java.lang.IllegalArgumentException bufferDoesntHaveEnoughCapacity()
@Message(id=31,
value="The preconfigured attributes are immutable")
java.lang.IllegalStateException preconfiguredAttributesAreImmutable()
@Message(id=32,
value=".. on root path")
java.lang.IllegalStateException onRootPath()