forked from MagicBane/Server
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					32 lines
				
				1.1 KiB
			
		
		
			
		
	
	
					32 lines
				
				1.1 KiB
			| 
								 
											4 years ago
										 
									 | 
							
								// • ▌ ▄ ·.  ▄▄▄·  ▄▄ • ▪   ▄▄· ▄▄▄▄·  ▄▄▄·  ▐▄▄▄  ▄▄▄ .
							 | 
						||
| 
								 | 
							
								// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
							 | 
						||
| 
								 | 
							
								// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
							 | 
						||
| 
								 | 
							
								// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
							 | 
						||
| 
								 | 
							
								// ▀▀  █▪▀▀▀ ▀  ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀  ▀  ▀ ▀▀  █▪ ▀▀▀
							 | 
						||
| 
								 | 
							
								//      Magicbane Emulator Project © 2013 - 2022
							 | 
						||
| 
								 | 
							
								//                www.magicbane.com
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								 package engine.exception;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								public class MsgSendException extends MBServerException {
							 | 
						||
| 
								 | 
							
									private static final long serialVersionUID = 6927044139998382254L;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									public MsgSendException() {
							 | 
						||
| 
								 | 
							
										super();
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									public MsgSendException(String arg0, Throwable arg1) {
							 | 
						||
| 
								 | 
							
										super(arg0, arg1);
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									public MsgSendException(String arg0) {
							 | 
						||
| 
								 | 
							
										super(arg0);
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									public MsgSendException(Throwable arg0) {
							 | 
						||
| 
								 | 
							
										super(arg0);
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								}
							 |