REST API 에서 처리하던대로 RuntimeException만 상속받아 구현한 Exception은GraphQL 에서 예외가 났을 때 잡히지 않았다. 1. GraphQLError를 구현한 Exception 클래스를 만들어준다.package org.example.woodpeckerback.exception;import graphql.ErrorClassification;import graphql.GraphQLError;import graphql.language.SourceLocation;import lombok.Getter;import java.util.List;import java.util.Map;@Getterpublic class GraphQLException extends RuntimeExceptio..