summaryrefslogtreecommitdiffstats
path: root/zpu/sw/simulator/com/zylin/zpu/simulator/exceptions/GDBServerException.java
blob: 8232790436bf6d203a9828be1db5cd4bee513ea6 (plain)
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
package com.zylin.zpu.simulator.exceptions;


public class GDBServerException extends RuntimeException
{
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public GDBServerException(NumberFormatException e)
	{
		super(e);
	}

	public GDBServerException()
	{
		
	}

    public GDBServerException(Exception e)
    {
        super(e);
    }
}
OpenPOWER on IntegriCloud