package questions;

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