forked from openize-com/openize-heic-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIOException.java
More file actions
46 lines (42 loc) · 1.37 KB
/
Copy pathIOException.java
File metadata and controls
46 lines (42 loc) · 1.37 KB
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
42
43
44
45
46
/*
* Openize.HEIC
* Copyright (c) 2024-2025 Openize Pty Ltd.
*
* This file is part of Openize.HEIC.
*
* Openize.HEIC is available under Openize license, which is
* available along with Openize.HEIC sources.
*/
package openize.io;
/**
* Signals that an I/O exception has occurred.
* Intended for throwing the uncontrollable exception
*/
public class IOException extends RuntimeException
{
/**
* Constructs an IOException with null as its error detail message.
*/
public IOException()
{
}
/**
* Constructs an IOException with the specified detail message.
* @param message The detail message (which is saved for later retrieval by the getMessage() method)
*/
public IOException(String message)
{
super(message);
}
/**
* Constructs an IOException with the specified detail message and cause.
* Note that the detail message associated with cause is not automatically incorporated into this exception's detail message.
*
* @param message The detail message (which is saved for later retrieval by the getMessage() method)
* @param cause The cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
*/
public IOException(String message, Throwable cause)
{
super(message, cause);
}
}