forked from usb4java/usb4java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLoaderException.java
More file actions
41 lines (37 loc) · 828 Bytes
/
LoaderException.java
File metadata and controls
41 lines (37 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* Copyright (C) 2013 Klaus Reimer <[email protected]>
* See LICENSE.md for licensing information.
*/
package org.usb4java;
/**
* Thrown when JNI library could not be loaded.
*
* @author Klaus Reimer ([email protected])
*/
public final class LoaderException extends RuntimeException
{
/** Serial version UID. */
private static final long serialVersionUID = 1L;
/**
* Constructor.
*
* @param message
* The error message.
*/
public LoaderException(final String message)
{
super(message);
}
/**
* Constructor.
*
* @param message
* The error message.
* @param cause
* The root cause.
*/
public LoaderException(final String message, final Throwable cause)
{
super(message, cause);
}
}