refractor exception -> localexception
flavien's git/Projet_JAVA_P2P_STRI2A/pipeline/head This commit looks good
Details
flavien's git/Projet_JAVA_P2P_STRI2A/pipeline/head This commit looks good
Details
parent
750788c1b3
commit
740e25546a
@ -1,4 +1,4 @@
|
||||
package exception;
|
||||
package localException;
|
||||
public class InternalError extends Exception {
|
||||
private static final long serialVersionUID = 12L;
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package exception;
|
||||
package localException;
|
||||
public class ProtocolError extends Exception {
|
||||
private static final long serialVersionUID = 12L;
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package exception;
|
||||
package localException;
|
||||
/** Used on reception side when size as set in Packet is too big, and we cant store this in a int/long as usual. */
|
||||
public class SizeError extends Exception {
|
||||
private static final long serialVersionUID = 12L;
|
@ -1,4 +1,4 @@
|
||||
package exception;
|
||||
package localException;
|
||||
public class SocketClosed extends Exception {
|
||||
private static final long serialVersionUID = 12L;
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package exception;
|
||||
package localException;
|
||||
public class TransmissionError extends Exception {
|
||||
private static final long serialVersionUID = 12L;
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package exception;
|
||||
package localException;
|
||||
public class VersionError extends Exception {
|
||||
private static final long serialVersionUID = 12L;
|
||||
}
|
Loading…
Reference in New Issue