-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBufferOverflowException.java
More file actions
51 lines (43 loc) · 685 Bytes
/
BufferOverflowException.java
File metadata and controls
51 lines (43 loc) · 685 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
42
43
44
45
46
47
48
49
50
51
/*
* Copyright (c) 2000, 2007, Oracle and/or its affiliates. All rights reserved.
*
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
// -- This file was mechanically generated: Do not edit! -- //
package java.nio;
/**
* Unchecked exception thrown when a relative <i>put</i> operation reaches
* the target buffer's limit.
*
* @since 1.4
*/
public class BufferOverflowException
extends RuntimeException
{
private static final long serialVersionUID = -5484897634319144535L;
/**
* Constructs an instance of this class.
*/
public BufferOverflowException() { }
}