Skip to content
Snippets Groups Projects
Commit 289f68b8 authored by Eric's avatar Eric
Browse files
parents 7072a256 55ab69c4
1 merge request!3Master
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package philosopherstoneclient.connection.response;
import org.json.simple.parser.ParseException;
/**
*
* @author winsxx
*/
public class CancelOfferResponse extends Response{
public CancelOfferResponse(String jsonString) throws ParseException, ResponseFailException, ResponseErrorException {
super(jsonString);
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package philosopherstoneclient.connection.response;
import org.json.simple.parser.ParseException;
/**
*
* @author winsxx
*/
public class FetchItemResponse extends Response{
public FetchItemResponse(String jsonString) throws ParseException, ResponseFailException, ResponseErrorException {
super(jsonString);
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package philosopherstoneclient.connection.response;
import org.json.simple.parser.ParseException;
/**
*
* @author winsxx
*/
public class OfferResponse extends Response{
public OfferResponse(String jsonString) throws ParseException, ResponseFailException, ResponseErrorException {
super(jsonString);
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package philosopherstoneclient.connection.response;
import org.json.simple.parser.ParseException;
/**
*
* @author winsxx
*/
public class SendAcceptResponse extends Response{
public SendAcceptResponse(String jsonString) throws ParseException, ResponseFailException, ResponseErrorException {
super(jsonString);
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package philosopherstoneclient.connection.response;
import org.json.simple.parser.ParseException;
/**
*
* @author winsxx
*/
public class SignupResponse extends Response{
public SignupResponse(String jsonString) throws ParseException, ResponseFailException, ResponseErrorException {
super(jsonString);
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment