package questions;

/**
 * Abstract representation of a response
 */
public abstract class Response
{
   private String response;
   
   /**
    * Returns a string representation of 
    * the response
    * @return string representation of
    *         response
    */
   public abstract String toString();
}